diff --git a/CHANGELOG.md b/CHANGELOG.md index 219ff6e5a..51d56aed5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.8 (May 23, 2018) + +* Fix client bug when max streams is reached. (#277) + # 0.1.7 (May 14, 2018) * Misc bug fixes (#266, #273, #261, #275). diff --git a/Cargo.toml b/Cargo.toml index ea1a86415..a85271cab 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.7" +version = "0.1.8" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index b2a78ffbc..54cb39fc0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`server::handshake`]: server/fn.handshake.html //! [`client::handshake`]: client/fn.handshake.html -#![doc(html_root_url = "https://docs.rs/h2/0.1.7")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.8")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]