From 6c8f08a76151999a053b3ca747e5025c33ad1ad0 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 25 Sep 2018 11:53:59 -0700 Subject: [PATCH] v0.9.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e5d506c1..49219e6a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.9.2 + +- Fix panic when `Location` header has UTF-8 characters. + ## v0.9.1 ### Fixes diff --git a/Cargo.toml b/Cargo.toml index 1c0d68bac..d040ad60e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.1" # remember to update html_root_url +version = "0.9.2" # 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 48cc23f9b..5f5042e10 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.1")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.9.2")] //! # reqwest //!