From 6b2940631e570e759908cb917d8c770ad756f1d3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 14 Jun 2019 13:43:00 -0700 Subject: [PATCH] v0.12.30 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b6bdcf..8df06e45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index 699e9c66..39200820 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index 2bfb3c07..7a05ece3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]