diff --git a/Cargo.lock b/Cargo.lock index 30204545..00a0163c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.3.1" +version = "0.3.2" dependencies = [ "cmov", "proptest", diff --git a/ctutils/CHANGELOG.md b/ctutils/CHANGELOG.md index 96156fec..46e31181 100644 --- a/ctutils/CHANGELOG.md +++ b/ctutils/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. 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). +## 0.3.2 (2026-01-16) +### Added +- `BytesCtEq` and `BytesCtSelect` traits ([#1359]) +- `CtFind` trait ([#1361]) +- `CtLookup` trait ([#1362]) + +### Changed +- Bump `cmov` crate dependency to v0.5.0-pre.0 ([#1357]) + +[#1357]: https://github.com/RustCrypto/utils/pull/1357 +[#1359]: https://github.com/RustCrypto/utils/pull/1359 +[#1361]: https://github.com/RustCrypto/utils/pull/1361 +[#1362]: https://github.com/RustCrypto/utils/pull/1362 + ## 0.3.1 (2026-01-03) ### Added - `Choice::to_u8_mask`/`to_u16_mask` ([#1322]) diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index b7019702..9f781c02 100644 --- a/ctutils/Cargo.toml +++ b/ctutils/Cargo.toml @@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate. """ -version = "0.3.1" +version = "0.3.2" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"