From 0786ea1f871de9e007295238f20512825720853e Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 7 Mar 2018 12:56:57 -0800 Subject: [PATCH] v0.11.22 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1f40d26..6c2872e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +### v0.11.22 (2018-03-07) + + +#### Bug Fixes + +* **client:** return error if Request has `CONNECT` method ([bfcdbd9f](https://github.com/hyperium/hyper/commit/bfcdbd9f86480cf6531544ecca247562a18172af)) +* **dependencies:** require tokio-core 0.1.11 ([49fcb066](https://github.com/hyperium/hyper/commit/49fcb0663cc30bbfc82cfc3c8e42d539211a3f3f)) + + +#### Features + +* **client:** add `Config::set_host` option ([33a385c6](https://github.com/hyperium/hyper/commit/33a385c6b677cce4ece2843c11ac78711fd5b898)) + + ### v0.11.21 (2018-02-28) diff --git a/Cargo.toml b/Cargo.toml index 212fb756..6a8c89d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.21" # don't forget to update html_root_url +version = "0.11.22" # 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 24d2ced9..8dca8952 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.21")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.22")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]