diff --git a/CHANGELOG.md b/CHANGELOG.md index d123d4b..3c6dbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [5.0.0](https://github.com/hapsoc/ktls/compare/v4.0.0...v5.0.0) - 2024-03-11 + +### Added +- [**breaking**] Upgrade to rustls 0.22.2 +- [**breaking**] Upgrade to tokio-rustls 0.25.0 + +### Other +- 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 +- 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"