Skip to content

Commit 217941c

Browse files
committed
v0.11.3
1 parent 32c4efb commit 217941c

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
### v0.11.3 (2017-09-28)
2+
3+
4+
#### Features
5+
6+
* **header:** add ContentType::xml() constructor ([92595e84](92595e84))
7+
* **http:** add Body::from(cow) for bytes and strings ([425ff71d](425ff71d))
8+
* **lib:** implement compatibility with http crate ([0c7d375b](0c7d375b))
9+
* **server:**
10+
* add experimental pipeline flush aggregation option to Http ([dd54f20b](dd54f20b))
11+
* remove unneeded Send + Sync from Server ([16e834d3](16e834d3))
12+
13+
#### Bug Fixes
14+
15+
* **client:**
16+
* cleanup dropped pending Checkouts from Pool ([3b91fc65](3b91fc65), closes [#1315](1315))
17+
* return Version errors if unsupported ([41c47241](41c47241), closes [#1283](1283))
18+
* **http:** log errors passed to tokio at debug level ([971864c4](971864c4), closes [#1278](1278))
19+
* **lib:**
20+
* Export hyper::RawStatus if the raw_status feature is enabled ([627c4e3d](627c4e3d))
21+
* remove logs that contain request and response data ([207fca63](207fca63), closes [#1281](1281))
22+
23+
#### Performance
24+
25+
* **server:** try to read from socket at keep-alive ([1a9f2648](1a9f2648))
26+
27+
128
### v0.11.2 (2017-07-27)
229

330

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "hyper"
4-
version = "0.11.2" # don't forget to update html_root_url
4+
version = "0.11.3" # don't forget to update html_root_url
55
description = "A modern HTTP library."
66
readme = "README.md"
77
homepage = "https://hyper.rs"
@@ -46,4 +46,4 @@ spmc = "0.2"
4646
default = []
4747
nightly = []
4848
raw_status = []
49-
compat = [ "http" ]
49+
compat = [ "http" ]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/hyper/0.11.2")]
1+
#![doc(html_root_url = "https://docs.rs/hyper/0.11.3")]
22
#![deny(missing_docs)]
33
#![deny(warnings)]
44
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)