diff --git a/CHANGELOG.md b/CHANGELOG.md index a53ec997..4257cafa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index f8abaa3f..65f3c0ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -46,4 +46,4 @@ spmc = "0.2" default = [] nightly = [] raw_status = [] -compat = [ "http" ] \ No newline at end of file +compat = [ "http" ] diff --git a/src/lib.rs b/src/lib.rs index 07b734d8..d7554e07 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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)]