From 4dd943756074edc3a8c33f5f48e3b2a012a070ee Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 23 Jan 2019 11:38:23 -0800 Subject: [PATCH] v0.12.22 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37eed019..8353e226 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.12.22 (2019-01-23) + + +#### Bug Fixes + +* **client:** parse IPv6 hosts correctly in HttpConnector ([c328c62e](https://github.com/hyperium/hyper/commit/c328c62ec29cd328c1c7331bb316fe4a548f11d7)) + + ### v0.12.21 (2019-01-15) diff --git a/Cargo.toml b/Cargo.toml index b889200f..7a638257 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.21" # don't forget to update html_root_url +version = "0.12.22" # 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 04bb08e9..f7b9b826 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.21")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.22")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]