diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e6a3a..5e4bb85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.12 (August 8, 2018) + +* Fix initial send window size (#301). +* Fix panic when calling `reserve_capacity` after connection has been closed (#302). +* Fix handling of incoming `SETTINGS_INITIAL_WINDOW_SIZE`. (#299) + # 0.1.11 (July 31, 2018) * Add `stream_id` accessors to public API types (#292). diff --git a/Cargo.toml b/Cargo.toml index 56d42b1..6560766 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.11" +version = "0.1.12" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index d410215..8af549d 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.11")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.12")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]