diff --git a/CHANGELOG.md b/CHANGELOG.md index 1125aa4..1b31677 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index 5569b07..d49fa81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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"] diff --git a/src/lib.rs b/src/lib.rs index bfd433f..88470a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]