Skip to content

Commit d40978c

Browse files
committed
v0.13.0-alpha.2
1 parent 053d649 commit d40978c

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
### v0.13.0-alpha.2 (2019-09-24)
2+
3+
4+
#### Bug Fixes
5+
6+
* **client:** allow client GET requests with explicit body headers ([0867ad5c](https://github.com/hyperium/hyper/commit/0867ad5c15fa52b7af3fc840ee7a1e256c469942), closes [#1925](https://github.com/hyperium/hyper/issues/1925))
7+
8+
9+
#### Features
10+
11+
* **body:**
12+
* identify aborted body write errors ([dc54ee19](https://github.com/hyperium/hyper/commit/dc54ee199f2d19d65913d224b900a61ab3bf2415))
13+
* put `Stream` impl for `Body` behind `stream` feature ([511ea388](https://github.com/hyperium/hyper/commit/511ea3889b5cceccb3a42aa72465fe38adef71a4))
14+
* **server:** introduce `Accept` trait ([b3e55062](https://github.com/hyperium/hyper/commit/b3e5506261c33dcaca39a126e891a0b9d5df5eea))
15+
16+
17+
#### Breaking Changes
18+
19+
* Using a `Body` as a `Stream`, and constructing one via
20+
`Body::wrap_stream`, require enabling the `unstable-stream` feature.
21+
22+
([511ea388](https://github.com/hyperium/hyper/commit/511ea3889b5cceccb3a42aa72465fe38adef71a4))
23+
* Passing a `Stream` to `Server::builder` or
24+
`Http::serve_incoming` must be changed to pass an `Accept` instead. The
25+
`unstable-stream` optional feature can be enabled, and the a stream can be
26+
converted using `hyper::server::accept::from_stream`.
27+
28+
([b3e55062](https://github.com/hyperium/hyper/commit/b3e5506261c33dcaca39a126e891a0b9d5df5eea))
29+
30+
131
### v0.13.0-alpha.1 (2019-09-04)
232

333

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyper"
3-
version = "0.13.0-alpha.1" # don't forget to update html_root_url
3+
version = "0.13.0-alpha.2" # don't forget to update html_root_url
44
description = "A fast and correct HTTP library."
55
readme = "README.md"
66
homepage = "https://hyper.rs"

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.13.0-alpha.1")]
1+
#![doc(html_root_url = "https://docs.rs/hyper/0.13.0-alpha.2")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![cfg_attr(test, deny(rust_2018_idioms))]

0 commit comments

Comments
 (0)