From 2db72d1593bd26db81d555b58b3d25f8e5c3c5de Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 20 Sep 2018 14:15:20 -0700 Subject: [PATCH] v0.9.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 6ee33a1..7e5d506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.9.1 + +### Fixes + +- Fix large request bodies failing because of improper handling of backpressure. +- Remove body-related headers when redirect changes a `POST` into a `GET`. +- Reduce memory size of `Response` and `Error` signicantly. + # v0.9.0 ### Features diff --git a/Cargo.toml b/Cargo.toml index b8c3b18..da82cfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.0" # remember to update html_root_url +version = "0.9.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 9abb3d9..48cc23f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))] #![cfg_attr(docs_rs_workaround, feature(extern_prelude))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.9.0")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.9.1")] //! # reqwest //!