From 09e7ce9d481550d00c244c1c1347c6439cd18b35 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 19 Dec 2025 18:52:38 -0700 Subject: [PATCH] cmov v0.4.1 --- Cargo.lock | 2 +- cmov/CHANGELOG.md | 6 ++++++ cmov/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4684e2d9..8abbe55b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cmov" -version = "0.4.0" +version = "0.4.1" [[package]] name = "collectable" diff --git a/cmov/CHANGELOG.md b/cmov/CHANGELOG.md index 2e5f862d..4b067747 100644 --- a/cmov/CHANGELOG.md +++ b/cmov/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.1 (2025-12-19) +### Changed +- Use `black_box` in portable impl ([#1255]) + +[#1255]: https://github.com/RustCrypto/utils/pull/1255 + ## 0.4.0 (2025-09-10) ### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) diff --git a/cmov/Cargo.toml b/cmov/Cargo.toml index 05213d2a..ea4e16c4 100644 --- a/cmov/Cargo.toml +++ b/cmov/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmov" -version = "0.4.0" +version = "0.4.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"