diff --git a/CHANGELOG.md b/CHANGELOG.md index 64ce8de8..7361e647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### v0.11.13 (2018-01-12) + + +#### Bug Fixes + +* **client:** + * change connection errors to debug log level ([2fe90f25](https://github.com/hyperium/hyper/commit/2fe90f256420ff668966290ac96686ce061453e4), closes [#1412](https://github.com/hyperium/hyper/issues/1412)) + * don't error on read before writing request ([7976023b](https://github.com/hyperium/hyper/commit/7976023b594ec6784e40a147d3baec99a947b118)) +* **lib:** properly handle body streaming errors ([7a48d0e8](https://github.com/hyperium/hyper/commit/7a48d0e8b4ad465c0205ddfb116b6bd60dbdec71)) + + ### v0.11.12 (2018-01-08) diff --git a/Cargo.toml b/Cargo.toml index e6b283b1..4f511960 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.12" # don't forget to update html_root_url +version = "0.11.13" # 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 cfa7496e..681c9d80 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.12")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.13")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]