diff --git a/CHANGELOG.md b/CHANGELOG.md index 9df7080..f999794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.2 (March 13, 2018) + +* Fix another bug relating to resetting connections and reaching + max concurrency (#238). + # 0.1.1 (March 8, 2018) * When streams are dropped, close the connection (#222). diff --git a/Cargo.toml b/Cargo.toml index e3a2988..ab37ec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "h2" # - Update html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.1" +version = "0.1.2" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 4569d78..6c5bba4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`Server::handshake`]: server/struct.Server.html#method.handshake //! [`Client::handshake`]: client/struct.Client.html#method.handshake -#![doc(html_root_url = "https://docs.rs/h2/0.1.1")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.2")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]