diff --git a/CHANGELOG.md b/CHANGELOG.md index 29771d71..597b7882 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,10 +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.3.1] - 2024-10-11 + +### Added +- Use ohrs to build tquic for HarmaryOS +- Support building for HarmonyOS on arm/x86_64 architecture + + ## [v1.3.0] - 2024-10-10 ### Added -- Support building for HarmonyOS +- Support building for HarmonyOS on aarch64 architecture - Support disable_1rtt_encryption transport parameter - Support sending 1-RTT packets on the server before handshake completion - Resolve new issues found by cargo clippy @@ -319,6 +326,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Provide example clients and servers. +[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 [v1.2.0]: https://github.com/tencent/tquic/compare/v1.1.0...v1.2.0 [v1.1.0]: https://github.com/tencent/tquic/compare/v1.0.0...v1.1.0 diff --git a/Cargo.toml b/Cargo.toml index f2c689ae..21133693 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic" -version = "1.3.0" +version = "1.3.1" edition = "2021" rust-version = "1.70.0" license = "Apache-2.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 07d88c48..ebb48ab8 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tquic_tools" -version = "1.3.0" +version = "1.3.1" 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.3.0"} +tquic = { path = "..", version = "1.3.1"} [target."cfg(unix)".dependencies] jemallocator = { version = "0.5", package = "tikv-jemallocator" }