diff --git a/CHANGELOG.md b/CHANGELOG.md index 7361e647..44dd5c39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.11.14 (2018-01-16) + + +#### Bug Fixes + +* **tokio-proto:** return end-of-body frame correctly for tokio-proto ([14e4c741](https://github.com/hyperium/hyper/commit/14e4c741dc48a386d7bdc6f8e9e279e60f172722), closes [#1414](https://github.com/hyperium/hyper/issues/1414)) + + ### v0.11.13 (2018-01-12) diff --git a/Cargo.toml b/Cargo.toml index 850655a1..89b031f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.13" # don't forget to update html_root_url +version = "0.11.14" # 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 681c9d80..330cd9ce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.13")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.14")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]