From 7ef8e94250634e306d398e4f369d2f86e3f075ed Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 25 Aug 2020 09:28:48 -0700 Subject: [PATCH] v0.10.8 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c185aee..c0b583b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.10.8 + +- Add `must_use` to `RequestBuilder` and `ClientBuilder`. +- Fix Windows system proxy detection of Fiddler proxies. +- (wasm) Add `headers` method to `RequestBuilder`. +- (wasm) Add `execute` method to `Client`. +- (wasm) Add `TryFrom` for `Request`. +- (wasm) Fix checking for global `window` to work in non-browser environments. +- (wasm) Fix sending of an empty body when not required. + ## v0.10.7 - Add `NO_PROXY` environment variable support. diff --git a/Cargo.toml b/Cargo.toml index 4686826..bcc7d43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.7" # remember to update html_root_url +version = "0.10.8" # 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 1b6567a..b830dcb 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.7")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.10.8")] //! # reqwest //!