From 6bce753f32b35865c22b4a3d3601c87d8fb5d55a Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 15 Jan 2019 10:13:25 -0800 Subject: [PATCH] v0.12.21 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1834f221..37eed019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### v0.12.21 (2019-01-15) + + +#### Features + +* **client:** + * add `Destination::try_from_uri` constructor ([c809542c](https://github.com/hyperium/hyper/commit/c809542c830c8d542877a22dd54b1c5c679ae433)) + * Add useful trait impls to Name ([be5ec455](https://github.com/hyperium/hyper/commit/be5ec45571e0b1c6c2b20fe4ab49ef1b0226a004)) + * add FromStr impl for Name ([607c4da0](https://github.com/hyperium/hyper/commit/607c4da0b96ca430593599c928c882a17a7914d5)) + + ### v0.12.20 (2019-01-07) diff --git a/Cargo.toml b/Cargo.toml index 9ee98639..c56f79e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.20" # don't forget to update html_root_url +version = "0.12.21" # 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 0300c6f3..04bb08e9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.20")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.21")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]