From 6d782ae8611c22a92ec6626bfb1db6992b9dfc79 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 1 Aug 2024 15:43:15 +0800 Subject: [PATCH] Update VERSION and CHANGELOG --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- tools/Cargo.toml | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2527d0a9..e9bdb78e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,18 @@ 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.0.0] - 2024-08-01 + +### Added +- Support building on Windows +- Optimize the initial RTT of the newly validated path +- Add API for deferring idle timeout + +### Changed +- Rename PathStats to quic_path_stats_t in FFI +- Change prototype of quic_set_logger in FFI + + ## [v0.15.0] - 2024-07-18 ### Added @@ -276,6 +288,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Provide example clients and servers. +[v1.0.0]: https://github.com/tencent/tquic/compare/v0.15.0...v1.0.0 [v0.15.0]: https://github.com/tencent/tquic/compare/v0.14.0...v0.15.0 [v0.14.0]: https://github.com/tencent/tquic/compare/v0.13.0...v0.14.0 [v0.13.0]: https://github.com/tencent/tquic/compare/v0.12.0...v0.13.0 diff --git a/Cargo.toml b/Cargo.toml index b87e220a..1cae16c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic" -version = "0.15.0" +version = "1.0.0" edition = "2021" rust-version = "1.70.0" license = "Apache-2.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index e70d71b3..2b5202d6 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic_tools" -version = "0.15.0" +version = "1.0.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 = "0.15.0"} +tquic = { path = "..", version = "1.0.0"} [target."cfg(unix)".dependencies] jemallocator = { version = "0.5", package = "tikv-jemallocator" }