From 1eb18a9e4486f4dfa5fc86a79c4487fb8eaed1ef Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 5 Feb 2018 16:37:43 -0800 Subject: [PATCH] v0.11.17 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 999b2aa9..edd4151a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.11.17 (2018-02-05) + + +#### Bug Fixes + +* **client:** more reliably detect closed pooled connections (#1434) ([265ad67c](https://github.com/hyperium/hyper/commit/265ad67c86379841a5aa821543a01648ccc8c26c)) +* **h1:** fix hung streaming bodies over HTTPS ([73109694](https://github.com/hyperium/hyper/commit/731096947d0704de58b75d17e05af956bcb21bd9)) + + ### v0.11.16 (2018-01-30) diff --git a/Cargo.toml b/Cargo.toml index bc9b4547..43b8aca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.16" # don't forget to update html_root_url +version = "0.11.17" # 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 6a46852c..4c4b412c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.16")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.17")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]