From 825e311141d7d9834f5510f56140cf741c30f870 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 2 Apr 2026 14:09:29 -0600 Subject: [PATCH] ctutils v0.4.2 --- Cargo.lock | 2 +- ctutils/CHANGELOG.md | 6 ++++++ ctutils/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b54b76d5..ab6f4202 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.4.1" +version = "0.4.2" dependencies = [ "cmov", "proptest", diff --git a/ctutils/CHANGELOG.md b/ctutils/CHANGELOG.md index e322ab22..1513398e 100644 --- a/ctutils/CHANGELOG.md +++ b/ctutils/CHANGELOG.md @@ -4,6 +4,12 @@ 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.4.2 (2026-04-02) +### Fixed +- `cmov` v0.5.3 version requirement ([#1467]) + +[#1467]: https://github.com/RustCrypto/utils/pull/1467 + ## 0.4.1 (2026-04-02) ### Added - `isize`/`usize` and `NonZero*` trait impls ([#1416]) diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index 4a56dcd3..0d6e1b62 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.4.1" +version = "0.4.2" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"