diff --git a/CHANGELOG.md b/CHANGELOG.md index 73115cf6..24b6fa7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.11.6 (2017-10-02) + + +#### Bug Fixes + +* **server:** fix experimental pipeline flushing ([6b4635fd](https://github.com/hyperium/hyper/commit/6b4635fd13f5fe91ad6d388c5e66394627ad7ba2)) + + ### v0.11.5 (2017-10-02) diff --git a/Cargo.toml b/Cargo.toml index 8571954f..4d302269 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.5" # don't forget to update html_root_url +version = "0.11.6" # 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 57a7ca3e..ab177bba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.5")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.6")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]