From 36eabbb18fbebb28d88362c249d60b155c110ea3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 21 Feb 2018 13:15:57 -0800 Subject: [PATCH] v0.11.19 --- 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 3a4cdac9..63a72867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### v0.11.19 (2018-02-21) + + +#### Bug Fixes + +* **client:** + * prevent empty bodies sending transfer-encoding for GET, HEAD ([77adab4e](https://github.com/hyperium/hyper/commit/77adab4ebf0fadd9ccd014d24ff0bcec1bce1e8b)) + * detect connection closes as pool tries to use ([dc619a8f](https://github.com/hyperium/hyper/commit/dc619a8fa01616b260ef32a35b35963460987206), closes [#1439](https://github.com/hyperium/hyper/issues/1439)) +* **uri:** make absolute-form uris always have a path ([a9413d73](https://github.com/hyperium/hyper/commit/a9413d7367e8b9f0245fc8a90a22ece7d55e7e04)) + + +#### Features + +* **client:** Client will retry requests on fresh connections ([ee61ea9a](https://github.com/hyperium/hyper/commit/ee61ea9adf86b309490a68d044e40bd1090338e8)) + + ### v0.11.18 (2018-02-07) diff --git a/Cargo.toml b/Cargo.toml index d6003fa9..ea9f72de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.18" # don't forget to update html_root_url +version = "0.11.19" # 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 69ed9d07..194ebd26 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.18")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.19")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]