diff --git a/CHANGELOG.md b/CHANGELOG.md index 13f1f48..25f5286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.10.5 + +- Add `ClientBuilder::pool_idle_timeout` option. +- Add `ClientBuilder::pool_max_idle_per_host` option, deprecate `max_idle_per_host`. +- Add `Response::content_length` for WASM target. +- Enable TCP_NODELAY by default. +- Implement `TryFrom` for `blocking::Request`. +- Implement `TryFrom` for `Request`. + - Removes `From` for `Request`. + - This is technically a breaking change, but was a mistake. It was not valid to convert from an `http::Request` to a `reqwest::Request` in an infallible fashion. It would panic if the conversion was not possible. Instead, the implementation has been changed to `TryFrom` to indicate it could fail. + ## v0.10.4 - Add `trust-dns` optional feature to change DNS resolver. diff --git a/Cargo.toml b/Cargo.toml index 1cd1edc..a782eda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.4" # remember to update html_root_url +version = "0.10.5" # 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 9b4ed1b..544740b 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.4")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.10.5")] //! # reqwest //!