diff --git a/CHANGELOG.md b/CHANGELOG.md index be0116e..c2800fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.3.1 (February 26, 2021) + +* Add `Connection::max_concurrent_recv_streams()` getter. +* Add `Connection::max_concurrent_send_streams()` getter. +* Fix client to ignore receipt of 1xx headers frames. +* Fix incorrect calculation of pseudo header lengths when determining if a received header is too big. +* Reduce monomorphized code size of internal code. + # 0.3.0 (December 23, 2020) * Update to Tokio v1 and Bytes v1. diff --git a/Cargo.toml b/Cargo.toml index ab730b3..a683674 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "h2" # - html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.3.0" +version = "0.3.1" license = "MIT" authors = [ "Carl Lerche ", diff --git a/src/lib.rs b/src/lib.rs index b69aafa..1ee37d9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! h2 = "0.2" +//! h2 = "0.3" //! ``` //! //! # Layout @@ -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.3.0")] +#![doc(html_root_url = "https://docs.rs/h2/0.3.1")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]