This commit is contained in:
Sean McArthur
2018-09-28 13:04:52 -07:00
parent efd2c281b8
commit 5c3415d704
3 changed files with 11 additions and 2 deletions

View File

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

View File

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

View File

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