v0.2.0-alpha.1

This commit is contained in:
Sean McArthur
2019-08-30 15:29:04 -07:00
parent 2d90efee17
commit 8e81d84910
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
# 0.2.0-alpha.1 (August 30, 2019)
* Update from `futures` 0.1 to `std::future::Future`.
* Update `AsyncRead`/`AsyncWrite` to `tokio-io` 0.2 alpha.
* Change `Stream` implementations to be optional, default disabled. Specific async and poll functions are now inherent, and `Stream` can be re-enabled with the `stream` cargo feature.
# 0.1.25 (June 28, 2019)
* Fix to send a `RST_STREAM` instead of `GOAWAY` if receiving a frame on a previously closed stream.

View File

@@ -5,11 +5,11 @@ name = "h2"
# - html_root_url.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.2.0-alpha.0"
version = "0.2.0-alpha.1"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "An HTTP/2.0 client and server"
documentation = "https://docs.rs/h2/0.1.25/h2/"
documentation = "https://docs.rs/h2/0.2.0-alpha.1/h2/"
repository = "https://github.com/hyperium/h2"
readme = "README.md"
keywords = ["http", "async", "non-blocking"]

View File

@@ -78,7 +78,7 @@
//! [`server::handshake`]: server/fn.handshake.html
//! [`client::handshake`]: client/fn.handshake.html
#![doc(html_root_url = "https://docs.rs/h2/0.1.25")]
#![doc(html_root_url = "https://docs.rs/h2/0.2.0-alpha.1")]
#![deny(missing_debug_implementations, missing_docs)]
#![cfg_attr(test, deny(warnings))]