diff --git a/CHANGELOG.md b/CHANGELOG.md index 5255188b..8b102459 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.4.14 (May 5, 2026) + +* Add `header_table_size()` option to server builder. +* Fix leaking connection flow control of padded DATA frames when stream is reset. +* Fix leaking connection flow control when canceling a stream after reserving capacity. +* Fix leaking connection flow control when receiving a DATA frame after GOAWAY. +* Fix waking the `poll_capacity` when locally reseting a stream from library. +* Fix sending HEADERS on a reset stream before the RST_STREAM frame. +* Fix receiving GOAWAY to not close peer-initiated streams. +* Optimize header value decoding to copy less bytes. + # 0.4.13 (January 5, 2026) * Add support for 1xx informational responses on client and server side. diff --git a/Cargo.toml b/Cargo.toml index bcdfd9d0..c96e9132 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "h2" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create git tag -version = "0.4.13" +version = "0.4.14" license = "MIT" authors = [ "Carl Lerche ",