diff --git a/CHANGELOG.md b/CHANGELOG.md index fa2adc2..c185aee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.10.7 + +- Add `NO_PROXY` environment variable support. +- Add more `Error::{is_request, is_body, is_decode}` getters. +- Add conversion of `reqwest::ClientBuilder` to `reqwest::blocking::ClientBuilder`. +- Add `headers_mut()` to `reqwest::blocking::Response`. +- (wasm) Add `form()`, `query()`, `multipart` and `bearer_auth()` to `RequestBuilder`. + ## v0.10.6 - Changed handling of URLs that don't have `http:` or `https:` schemes, returning an error instead. diff --git a/Cargo.toml b/Cargo.toml index 3c46cd6..84eea6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.6" # remember to update html_root_url +version = "0.10.7" # 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 3d1b1b4..43771e3 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.6")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.10.7")] //! # reqwest //!