This commit is contained in:
Sean McArthur
2017-09-28 16:43:50 -07:00
parent 32c4efb86e
commit 217941cef2
3 changed files with 30 additions and 3 deletions

View File

@@ -1,3 +1,30 @@
### v0.11.3 (2017-09-28)
#### Features
* **header:** add ContentType::xml() constructor ([92595e84](92595e84))
* **http:** add Body::from(cow) for bytes and strings ([425ff71d](425ff71d))
* **lib:** implement compatibility with http crate ([0c7d375b](0c7d375b))
* **server:**
* add experimental pipeline flush aggregation option to Http ([dd54f20b](dd54f20b))
* remove unneeded Send + Sync from Server ([16e834d3](16e834d3))
#### Bug Fixes
* **client:**
* cleanup dropped pending Checkouts from Pool ([3b91fc65](3b91fc65), closes [#1315](1315))
* return Version errors if unsupported ([41c47241](41c47241), closes [#1283](1283))
* **http:** log errors passed to tokio at debug level ([971864c4](971864c4), closes [#1278](1278))
* **lib:**
* Export hyper::RawStatus if the raw_status feature is enabled ([627c4e3d](627c4e3d))
* remove logs that contain request and response data ([207fca63](207fca63), closes [#1281](1281))
#### Performance
* **server:** try to read from socket at keep-alive ([1a9f2648](1a9f2648))
### v0.11.2 (2017-07-27)

View File

@@ -1,7 +1,7 @@
[package]
name = "hyper"
version = "0.11.2" # don't forget to update html_root_url
version = "0.11.3" # don't forget to update html_root_url
description = "A modern HTTP library."
readme = "README.md"
homepage = "https://hyper.rs"

View File

@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/hyper/0.11.2")]
#![doc(html_root_url = "https://docs.rs/hyper/0.11.3")]
#![deny(missing_docs)]
#![deny(warnings)]
#![deny(missing_debug_implementations)]