This commit is contained in:
Sean McArthur
2019-01-15 10:13:25 -08:00
parent c809542c83
commit 6bce753f32
3 changed files with 13 additions and 2 deletions

View File

@@ -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)

View File

@@ -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"

View File

@@ -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))]