diff --git a/CHANGELOG.md b/CHANGELOG.md index 8082359..671113e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.5 (April 6, 2018) + +* Fix the `last_stream_id` sent during graceful GOAWAY (#254). + # 0.1.4 (April 5, 2018) * Add `initial_connection_window_size` to client and server `Builder`s (#249). diff --git a/Cargo.toml b/Cargo.toml index 0917982..e9a5ed1 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.4" +version = "0.1.5" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 0b74731..ce81ad3 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.4")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.5")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]