diff --git a/CHANGELOG.md b/CHANGELOG.md index 57be55ad1..c8f4c46ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.11.23 + +- Add `Proxy::custom_http_auth(val)` for setting the raw `Proxy-Authorization` header when connecting to proxies. +- Fix redirect to reject locations that are not `http://` or `https://`. +- Fix setting `nodelay` when TLS is enabled but URL is HTTP. +- (wasm) Add `ClientBuilder::user_agent(val)`. +- (wasm) add `multipart::Form::headers(headers)`. + ## v0.11.22 - Fix compilation on Windows when `trust-dns` is enabled. diff --git a/Cargo.toml b/Cargo.toml index 1e517f824..11bf77fba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.22" # remember to update html_root_url +version = "0.11.23" # 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 188ba4f02..40242299b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,6 @@ #![deny(missing_debug_implementations)] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(test, deny(warnings))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.11.22")] //! # reqwest //!