This commit is contained in:
Sean McArthur
2017-10-02 15:46:09 -07:00
parent e8d6173734
commit c2fd47f211
3 changed files with 11 additions and 3 deletions

View File

@@ -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) ### v0.11.4 (2017-09-28)

View File

@@ -1,14 +1,14 @@
[package] [package]
name = "hyper" 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." description = "A modern HTTP library."
readme = "README.md" readme = "README.md"
homepage = "https://hyper.rs" homepage = "https://hyper.rs"
documentation = "https://docs.rs/hyper" documentation = "https://docs.rs/hyper"
repository = "https://github.com/hyperium/hyper" repository = "https://github.com/hyperium/hyper"
license = "MIT" license = "MIT"
authors = ["Sean McArthur <sean.monstar@gmail.com>"] authors = ["Sean McArthur <sean@seanmonstar.com>"]
keywords = ["http", "hyper", "hyperium"] keywords = ["http", "hyper", "hyperium"]
categories = ["network-programming", "web-programming::http-client", "web-programming::http-server"] categories = ["network-programming", "web-programming::http-client", "web-programming::http-server"]

View File

@@ -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(missing_docs)]
#![deny(warnings)] #![deny(warnings)]
#![deny(missing_debug_implementations)] #![deny(missing_debug_implementations)]