From ccd8ebff753df428255e851ccc2ea51734ddcd78 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 26 Dec 2017 15:25:20 -0800 Subject: [PATCH] v0.11.10 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06eb1263..b9a2802a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### v0.11.10 (2017-12-26) + + +#### Bug Fixes + +* **client:** + * fix panic when request body is empty string ([bfb0f84d](https://github.com/hyperium/hyper/commit/bfb0f84d372ec4251a20d16a1ac514a4177e2a3b)) + * close connections when Response Future or Body is dropped ([ef400812](https://github.com/hyperium/hyper/commit/ef4008121e4faa9383fe4661ebd05de5efe7ee9c), closes [#1397](https://github.com/hyperium/hyper/issues/1397)) + * properly close idle connections after timeout ([139dc7ab](https://github.com/hyperium/hyper/commit/139dc7ab2be271cd58b909db16c6ddbe5109f133), closes [#1397](https://github.com/hyperium/hyper/issues/1397)) +* **conn:** don't double shutdown in some cases ([7d3abfbc](https://github.com/hyperium/hyper/commit/7d3abfbcf33946cb8831103c3b55f9966fa9469d)) + + ### v0.11.9 (2017-12-09) diff --git a/Cargo.toml b/Cargo.toml index 33760433..de78f1ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.9" # don't forget to update html_root_url +version = "0.11.10" # don't forget to update html_root_url description = "A modern HTTP library." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index 0126a4b7..2963df80 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.9")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.10")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]