From d662c850a9b82ef5d0441ed39a0e21b4eec0a3fa Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 9 Jan 2020 13:50:56 -0800 Subject: [PATCH] v0.10.1 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a791801..46a16e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.10.1 + +- Add `socks` optional feature to support SOCKS5 proxies. +- Add `RequestBuilder::timeout()` to configure a timeout for a single request, instead of using the client's timeout. +- Add `ClientBuilder::connection_verbose()` option to enable verbose IO logs. +- (wasm) Add `RequestBuilder::fetch_mode_no_cors()` option. +- (wasm) Add `Response::url()` getter method. + # v0.10.0 - Add `std::future::Future` support. diff --git a/Cargo.toml b/Cargo.toml index dc88577..d6f63b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.0" # remember to update html_root_url +version = "0.10.1" # 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 60314aa..e864b3a 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.0")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.10.1")] //! # reqwest //!