diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f5d1df2..06eb1263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### v0.11.9 (2017-12-09) + + +#### Bug Fixes + +* **client:** detect valid eof after reading a body ([15fdd53d](https://github.com/hyperium/hyper/commit/15fdd53d4cb1cd0fef41c4bed509020f44512a00), closes [#1396](https://github.com/hyperium/hyper/issues/1396)) + + +#### Features + +* **log:** improve quality of debug level logs ([7b593112](https://github.com/hyperium/hyper/commit/7b5931122a07f2a766d3e103001bcb5ee1f983f3)) + + ### v0.11.8 (2017-12-06) diff --git a/Cargo.toml b/Cargo.toml index d9432422..3fdd82e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.8" # don't forget to update html_root_url +version = "0.11.9" # 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 5c161112..0126a4b7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.8")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.9")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]