From c2fd47f211a8a3b9c3e2adf0121c15210d73ba3f Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 2 Oct 2017 15:46:09 -0700 Subject: [PATCH] v0.11.5 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dcf112e9c..73115cf682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.11.5 (2017-10-02) + + +#### Bug Fixes + +* **http:** avoid infinite recursion when Body::from is called with Cow::Owned. (#1343) ([e8d61737](/~https://github.com/hyperium/hyper/commit/e8d6173734b0fb43bf7401fdbe43258d913a6284)) + + ### v0.11.4 (2017-09-28) diff --git a/Cargo.toml b/Cargo.toml index 1b60cf9254..8571954feb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "hyper" -version = "0.11.4" # don't forget to update html_root_url +version = "0.11.5" # don't forget to update html_root_url description = "A modern HTTP library." readme = "README.md" homepage = "https://hyper.rs" documentation = "https://docs.rs/hyper" repository = "/~https://github.com/hyperium/hyper" license = "MIT" -authors = ["Sean McArthur "] +authors = ["Sean McArthur "] keywords = ["http", "hyper", "hyperium"] categories = ["network-programming", "web-programming::http-client", "web-programming::http-server"] diff --git a/src/lib.rs b/src/lib.rs index 2dc64bfb14..57a7ca3e99 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.4")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.5")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]