diff --git a/CHANGELOG.md b/CHANGELOG.md index 63a72867..bc717753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### v0.11.20 (2018-02-26) + + +#### Bug Fixes + +* **server:** + * Make sleep_on_errors configurable and use it in example ([3a36eb55](https://github.com/hyperium/hyper/commit/3a36eb559676349d8a321c3159684503014f7fbe)) + * Sleep on socket IO errors ([68458cde](https://github.com/hyperium/hyper/commit/68458cde57a20f4b3c9c306eaf9801189262e0a6)) + + +#### Features + +* **body:** add `Body::is_empty()` method ([2f45d539](https://github.com/hyperium/hyper/commit/2f45d5394a2f8a49442ff4798a4b1651c079f0ff)) +* **request:** add `Request::body_mut()` method ([3fa191a2](https://github.com/hyperium/hyper/commit/3fa191a2676feb86c91abf8dfcc8e63477980297)) + + ### v0.11.19 (2018-02-21) diff --git a/Cargo.toml b/Cargo.toml index ea9f72de..359996bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.19" # don't forget to update html_root_url +version = "0.11.20" # 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 194ebd26..45178fa1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.19")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.20")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]