diff --git a/CHANGELOG.md b/CHANGELOG.md index e9bdb78e..01df046c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v1.1.0] - 2024-08-20 + +### Added +- Buffer undecryptable Handshake and OneRtt packets during the handshake phase +- Update some comments about stream + +### Fixed +- Fix the closure of the stream that was reset by the peer +- Fix the suboptimal performance in multipath transmission caused by pacing + + ## [v1.0.0] - 2024-08-01 ### Added diff --git a/Cargo.toml b/Cargo.toml index 1cae16c9..701c1f2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic" -version = "1.0.0" +version = "1.1.0" edition = "2021" rust-version = "1.70.0" license = "Apache-2.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 2b5202d6..8fc9703a 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic_tools" -version = "1.0.0" +version = "1.1.0" edition = "2021" rust-version = "1.70.0" license = "Apache-2.0" @@ -22,7 +22,7 @@ slab = "0.4" rand = "0.8.5" statrs = "0.16" signal-hook = "0.3.17" -tquic = { path = "..", version = "1.0.0"} +tquic = { path = "..", version = "1.1.0"} [target."cfg(unix)".dependencies] jemallocator = { version = "0.5", package = "tikv-jemallocator" }