From e34a32b0a08d6af1a28b1a7d75664a052d8c3cb3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 8 Jan 2018 10:06:19 -0800 Subject: [PATCH] v0.11.12 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51bbebc7..64ce8de8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.11.12 (2018-01-08) + + +#### Bug Fixes + +* **server:** add remote_addr back to Request when using Http::bind ([fa7f4377](https://github.com/hyperium/hyper/commit/fa7f4377c1d783ca860820aefc41d0eab73be14c), closes [#1410](https://github.com/hyperium/hyper/issues/1410)) + + ### v0.11.11 (2018-01-05) diff --git a/Cargo.toml b/Cargo.toml index 6ec74430..e6b283b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.11" # don't forget to update html_root_url +version = "0.11.12" # don't forget to update html_root_url description = "A modern HTTP library." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index 35ce0887..cfa7496e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.11")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.12")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]