diff --git a/CHANGELOG.md b/CHANGELOG.md index 827cbf9..9ca9aaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.2.0-alpha.3 (October 1, 2019) + +* Update to futures `0.3.0-alpha.19`. +* Update to tokio `0.2.0-alpha.6`. + # 0.2.0-alpha.2 (September 20, 2019) * Add server support for `PUSH_PROMISE`s (#327). diff --git a/Cargo.toml b/Cargo.toml index d6dec45..d0e3920 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.2" +version = "0.2.0-alpha.3" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" -documentation = "https://docs.rs/h2/0.2.0-alpha.2/h2/" +documentation = "https://docs.rs/h2/0.2.0-alpha.3/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 2e223c2..de17e6f 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.2.0-alpha.2")] +#![doc(html_root_url = "https://docs.rs/h2/0.2.0-alpha.3")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]