From be9d5e8d5ccefefeff618006db02d6dd597c8a78 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 22 Jan 2018 12:17:33 -0800 Subject: [PATCH] v0.11.15 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44dd5c39..d6d42e75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### v0.11.15 (2018-01-22) + + +#### Bug Fixes + +* **lib:** properly handle HTTP/1.0 remotes ([36e66a50](https://github.com/hyperium/hyper/commit/36e66a50546347c6f9b74c6d3c26e8b910483a4b), closes [#1304](https://github.com/hyperium/hyper/issues/1304)) + + +#### Features + +* **client:** add `executor` method when configuring a `Client` ([c89019eb](https://github.com/hyperium/hyper/commit/c89019eb100d00b5235d3b9a0d0b672ab0ef8ddc)) + + ### v0.11.14 (2018-01-16) diff --git a/Cargo.toml b/Cargo.toml index 3f2c78f5..bb61ce79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.11.14" # don't forget to update html_root_url +version = "0.11.15" # 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 330cd9ce..2785b804 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.11.14")] +#![doc(html_root_url = "https://docs.rs/hyper/0.11.15")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]