From d050e604e100433eb5629a7e575de8811ee1d2c8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 2 Oct 2023 10:41:32 -0400 Subject: [PATCH] v0.11.21 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb7a1d768..9651a6719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.11.21 + +- Add automatically detecting macOS proxy settings. +- Add `ClientBuilder::tls_info(bool)`, which will put `tls::TlsInfo` into the response extensions. +- Fix trust-dns resolver from possible hangs. +- Fix connect timeout to be split among multiple IP addresses. + ## v0.11.20 - Fix `deflate` decompression back to using zlib, as outlined in the spec. diff --git a/Cargo.toml b/Cargo.toml index 18ae324b9..d6a14ab94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.20" # remember to update html_root_url +version = "0.11.21" # 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 e6335e208..ba11b617a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![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.20")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.11.21")] //! # reqwest //!