From 6ad3e9a1c5912e57f6d0462d84655b5a8817080c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 20 Aug 2019 14:18:25 -0700 Subject: [PATCH] v0.9.20 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2da5956aa..cf5a97ace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.9.20 + +- Improve error message when proxy connections fail to tunnel. +- Update `mime_guess` and `rustls` dependencies. + ## v0.9.19 - Add `ClientBuilder::use_sys_proxy()` to enable automatic detect of HTTP proxies configured on the system. diff --git a/Cargo.toml b/Cargo.toml index 019de79fb..db7c64102 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.19" # remember to update html_root_url +version = "0.9.20" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] repository = "https://github.com/seanmonstar/reqwest" diff --git a/src/lib.rs b/src/lib.rs index 6e1b73da0..8ad3db758 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.9.19")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.9.20")] //! # reqwest //!