This commit is contained in:
Sean McArthur
2019-06-14 13:43:00 -07:00
parent 8316f96d80
commit 6b2940631e
3 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
### v0.12.30 (2019-06-14)
#### Bug Fixes
* **http1:** force always-ready connections to yield after a few spins ([8316f96d](https://github.com/hyperium/hyper/commit/8316f96d807454b76cde3cc6a7be552c02000529))
* **http2:** correctly propagate HTTP2 request cancellation ([50198851](https://github.com/hyperium/hyper/commit/50198851a2b1e47c5ad60565eacb712fb3df1ad6))
### v0.12.29 (2019-05-16)

View File

@@ -1,6 +1,6 @@
[package]
name = "hyper"
version = "0.12.29" # don't forget to update html_root_url
version = "0.12.30" # 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.29")]
#![doc(html_root_url = "https://docs.rs/hyper/0.12.30")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]