Skip to content

Commit 7f1758b

Browse files
committed
cmov v0.5.3
1 parent 272e59f commit 7f1758b

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmov/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.5.3 (2026-04-02)
8+
### Added
9+
- Impl `Cmov`/`CmovEq` for `NonZeroUsize`/`NonZeroIsize` ([#1415])
10+
11+
### Changed
12+
- Avoid using `asm!` under `cfg(miri)` ([#1436])
13+
14+
[#1415]: https://github.com/RustCrypto/utils/pull/1415
15+
[#1436]: https://github.com/RustCrypto/utils/pull/1436
16+
717
## 0.5.2 (2026-01-20)
818
### Fixed
919
- `Cmov` impl for `isize`/`usize` ([#1412])

cmov/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cmov"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

ctutils/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## 0.4.1 (2026-04-02)
88
### Added
9+
- `isize`/`usize` and `NonZero*` trait impls ([#1416])
910
- `subtle` migration guide ([#1465])
1011

12+
[#1416]: https://github.com/RustCrypto/utils/pull/1416
1113
[#1465]: https://github.com/RustCrypto/utils/pull/1465
1214

1315
## 0.4.0 (2026-01-19)

ctutils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ edition = "2024"
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
cmov = "0.5.1"
20+
cmov = "0.5.3"
2121

2222
# optional dependencies
2323
subtle = { version = "2", optional = true, default-features = false }

0 commit comments

Comments
 (0)