From d7436cfbe01489a800239120fca7003f1e11fb8a Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 25 Jun 2018 12:46:41 -0700 Subject: [PATCH] v0.12.3 --- 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 93fa9dd0..9b9582b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.12.3 (2018-06-25) + + +#### Features + +* **client:** enable CONNECT requests through the `Client` ([2a3844ac](https://github.com/hyperium/hyper/commit/2a3844acc393d42ff1b75f798dcc321a20956bea)) +* **http2:** quickly cancel when receiving RST_STREAM ([ffdb4788](https://github.com/hyperium/hyper/commit/ffdb47883190a8889cf30b716294383392a763c5)) + + ### v0.12.2 (2018-06-19) diff --git a/Cargo.toml b/Cargo.toml index 28de9d37..b8a2c8c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.12.2" # don't forget to update html_root_url +version = "0.12.3" # 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 5e994eb4..4511b5fa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.2")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.3")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]