diff --git a/CHANGELOG.md b/CHANGELOG.md index 25f528679..fa2adc2e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.10.6 + +- Changed handling of URLs that don't have `http:` or `https:` schemes, returning an error instead. +- Fixed a potential hyper-rustls feature conflict. + ## v0.10.5 - Add `ClientBuilder::pool_idle_timeout` option. diff --git a/Cargo.toml b/Cargo.toml index 507715338..63df5981d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.5" # remember to update html_root_url +version = "0.10.6" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"] diff --git a/src/lib.rs b/src/lib.rs index 544740b0f..8c78f4486 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.10.5")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.10.6")] //! # reqwest //!