diff --git a/CHANGELOG.md b/CHANGELOG.md index edd4151a3a..3a4cdac9d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### v0.11.18 (2018-02-07) + + +#### Bug Fixes + +* **client:** send an `Error::Cancel` if a queued request is dropped ([88f01793](https://github.com/hyperium/hyper/commit/88f01793bec5830370cb88f74a64a2e20a440c17)) + + +#### Features + +* **client:** add `http1_writev` configuration option ([b0aa6497](https://github.com/hyperium/hyper/commit/b0aa6497258c20354ae0fe36d668e0c2361b3151)) + + ### v0.11.17 (2018-02-05) diff --git a/Cargo.toml b/Cargo.toml index 43b8aca144..d6003fa916 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.17" # don't forget to update html_root_url +version = "0.11.18" # 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 4c4b412c09..69ed9d071b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.17")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.18")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]