From 871ec6f9899358aefa68ac011b232df24b788076 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 1 Apr 2019 18:45:16 -0700 Subject: [PATCH] v0.9.13 --- 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 1e42593..d2b1038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.9.13 + +### Fixes + +- Fix panic on some invalid `Location` headers during redirects (error is logged and redirect response is returned instead). +- Fix instance when server notices streaming request body is complete before reqwest does. + ## v0.9.12 ### Features diff --git a/Cargo.toml b/Cargo.toml index 2a62eb8..530ba61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.12" # remember to update html_root_url +version = "0.9.13" # 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 a61f70a..296ca3b 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.12")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.9.13")] //! # reqwest //!