From be89bdbb1e2ae28dada52a293f628968a1168e66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:46:36 +0000 Subject: [PATCH 1/2] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d123d4b..c11448e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [5.0.0](https://github.com/hapsoc/ktls/compare/v4.0.0...v5.0.0) - 2024-03-11 + +### Added +- More dependency upgrades +- [**breaking**] Upgrade dependencies + +### Other +- TLS 1.3 codepath still does the right thing in rustls 0.22.2 +- backtraces in CI +- Fix integration test compile errors +- rustls 0.22 support +- Get rid of constrandom +- Add flake to have the toolchain anywhere +- Re-add Cargo.lock as per updated best practices +- Disable incremental compilation +- Remove token +- Install missing tools +- Use the sccache action +- Just straight up try running it on GitHub-hosted runners + ## [4.0.0](https://github.com/hapsoc/ktls/compare/v3.0.2...v4.0.0) - 2023-10-08 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 4a35b02..285c1b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,7 +228,7 @@ dependencies = [ [[package]] name = "ktls" -version = "4.0.0" +version = "5.0.0" dependencies = [ "futures", "ktls-recvmsg", diff --git a/Cargo.toml b/Cargo.toml index 78d2546..85f777a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ktls" -version = "4.0.0" +version = "5.0.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/hapsoc/ktls" From 5a8fe0a821bf8596421e242f881d5f62aa90615e Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Mon, 11 Mar 2024 13:50:48 +0100 Subject: [PATCH 2/2] Hand-edit changelog a bit --- CHANGELOG.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c11448e..3c6dbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,16 +3,13 @@ ## [5.0.0](https://github.com/hapsoc/ktls/compare/v4.0.0...v5.0.0) - 2024-03-11 ### Added -- More dependency upgrades -- [**breaking**] Upgrade dependencies +- [**breaking**] Upgrade to rustls 0.22.2 +- [**breaking**] Upgrade to tokio-rustls 0.25.0 ### Other -- TLS 1.3 codepath still does the right thing in rustls 0.22.2 -- backtraces in CI -- Fix integration test compile errors -- rustls 0.22 support -- Get rid of constrandom -- Add flake to have the toolchain anywhere +- Get rid of constrandom (it caused 'wrong type' compile error on Rust stable) +- Print backtraces in CI +- Add nix flake to have the toolchain everywhere - Re-add Cargo.lock as per updated best practices - Disable incremental compilation - Remove token