From bcb065ca825a5ca211fffcb08a0d3b3390accdfc Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Tue, 5 Nov 2024 04:20:18 +0000 Subject: [PATCH] Update VERSION and CHANGELOG --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- tools/Cargo.toml | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71866fb2..f9a0130f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,16 @@ 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.5.0] - 2024-10-28 + +### Added +- Add h3 feature flag to reduce the size of complied library +- Add tquic_time_cwnd.py for analyzing TQUIC debug logs and produce a time-cwnd figure + +### Fixed +- Fix the typos detected by the latest typo-cli + + ## [v1.4.0] - 2024-10-28 ### Added @@ -339,6 +349,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Provide example clients and servers. +[v1.5.0]: https://github.com/tencent/tquic/compare/v1.4.0...v1.5.0 [v1.4.0]: https://github.com/tencent/tquic/compare/v1.3.1...v1.4.0 [v1.3.1]: https://github.com/tencent/tquic/compare/v1.3.0...v1.3.1 [v1.3.0]: https://github.com/tencent/tquic/compare/v1.2.0...v1.3.0 diff --git a/Cargo.toml b/Cargo.toml index f0feb643..76309564 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic" -version = "1.4.0" +version = "1.5.0" edition = "2021" rust-version = "1.70.0" license = "Apache-2.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index d02d49b4..b4b90ca0 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic_tools" -version = "1.4.0" +version = "1.5.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.4.0"} +tquic = { path = "..", version = "1.5.0"} [target."cfg(unix)".dependencies] jemallocator = { version = "0.5", package = "tikv-jemallocator" }