Skip to content

Commit 1f73405

Browse files
authored
ctutils v0.3.1 (#1325)
### Added - `Choice::to_u8_mask`/`to_u16_mask` (#1322) - `Choice::select_u8`/`select_u16` (#1324)
1 parent 9fe7405 commit 1f73405

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-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.

ctutils/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.3.1 (2026-01-03)
8+
### Added
9+
- `Choice::to_u8_mask`/`to_u16_mask` ([#1322])
10+
- `Choice::select_u8`/`select_u16` ([#1324])
11+
12+
[#1322]: https://github.com/RustCrypto/utils/pull/1322
13+
[#1324]: https://github.com/RustCrypto/utils/pull/1324
14+
715
## 0.3.0 (2025-12-29)
816
### Removed
917
- `Choice::new` ([#1314])

ctutils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target
55
applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides
66
architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate.
77
"""
8-
version = "0.3.0"
8+
version = "0.3.1"
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"

ctutils/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025 The RustCrypto Project Developers
1+
Copyright (c) 2025-2026 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

0 commit comments

Comments
 (0)