From bdbaa85f41cbaf4fdb33c2269fb58527360e669c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 10 Aug 2018 14:42:27 -0700 Subject: [PATCH] v0.12.8 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4259250a4..53a7d74773 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### v0.12.8 (2018-08-10) + + +#### Bug Fixes + +* **server:** coerce responses with HTTP2 version to HTTP/1.1 when protocol is 1.x ([195fbb2a](https://github.com/hyperium/hyper/commit/195fbb2a3728460e7f7eca2035461ce055db6cd0)) + + +#### Features + +* **server:** + * add Builder::http1_keepalive method ([b459adb4](https://github.com/hyperium/hyper/commit/b459adb43a753ba082f1fc03c90ff4e76625666f)) + * add `Server::from_tcp` constructor ([bb4c5e24](https://github.com/hyperium/hyper/commit/bb4c5e24c846995b66e361d1c2446cb81984bbbd), closes [#1602](https://github.com/hyperium/hyper/issues/1602)) + * add remote_addr method to AddrStream ([26f3a5ed](https://github.com/hyperium/hyper/commit/26f3a5ed317330db39dd33f49bafd859bc867d8a)) + + ### v0.12.7 (2018-07-23) diff --git a/Cargo.toml b/Cargo.toml index fe3f97b383..dceb1244a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.7" # don't forget to update html_root_url +version = "0.12.8" # 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 7135d6e60c..1900f25029 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.7")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.8")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]