From 0c8f7d2708f43a810821b503986fef35e45550c3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 11 Feb 2019 12:10:21 -0800 Subject: [PATCH] v0.12.24 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 046874f99b..2b9522ad52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +### v0.12.24 (2019-02-11) + + +#### Bug Fixes + +* **client:** fix panic when CONNECT request doesn't have a port ([d16b2c30](https://github.com/hyperium/hyper/commit/d16b2c30810a2d96ab226997930d953b2fc2626b)) + + +#### Features + +* **server:** + * add `http1_max_buf_size` in the `server::Builder` (#1761) ([3e9782c2](https://github.com/hyperium/hyper/commit/3e9782c2a9501a3122df8a54775a1fa7f2386fea)) + * add `into_inner` to `AddrStream` (#1762) ([e52f80df](https://github.com/hyperium/hyper/commit/e52f80df5a114844d239561218112a650067f006)) + + ### v0.12.23 (2019-01-24) diff --git a/Cargo.toml b/Cargo.toml index a7b6aad42a..7591cb53e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.23" # don't forget to update html_root_url +version = "0.12.24" # 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 fcf44abe16..1dd64625da 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.23")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.24")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]