From 5c3415d704daf5194b48116a892f2e5c25848b2a Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 28 Sep 2018 13:04:52 -0700 Subject: [PATCH] v0.12.11 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddf51cfd..97d65c68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.12.11 (2018-09-28) + + +#### Bug Fixes + +* **client:** allow calling `Destination::set_host` with IPv6 addresses ([af5e4f3e](https://github.com/hyperium/hyper/commit/af5e4f3ec24a490e209e3e73f86207b63ce7191a), closes [#1661](https://github.com/hyperium/hyper/issues/1661)) +* **server:** use provided executor if fallback to HTTP2 ([1370a6f8](https://github.com/hyperium/hyper/commit/1370a6f8f06f9906ff75dec904ab9c6d763e37f0)) + + ### v0.12.10 (2018-09-14) diff --git a/Cargo.toml b/Cargo.toml index b8ea6db3..1ec13885 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.10" # don't forget to update html_root_url +version = "0.12.11" # don't forget to update html_root_url description = "A fast and correct HTTP library." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index 38f26f01..6b209584 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.10")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.11")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]