Skip to content

Commit ae7a276

Browse files
authored
ctutils v0.2.3 (#1313)
### Added - Impl `From<u8>` for `Choice` (#1309) - `Choice::from_u8*` and `from_u16*` (#1311) ### Changed - Deprecate `Choice::new` (#1312)
1 parent 90936dc commit ae7a276

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.2.3 (2025-12-29)
8+
### Added
9+
- Impl `From<u8>` for `Choice` ([#1309])
10+
- `Choice::from_u8*` and `from_u16*` ([#1311])
11+
12+
### Changed
13+
- Deprecate `Choice::new` ([#1312])
14+
15+
[#1309]: https://github.com/RustCrypto/utils/pull/1309
16+
[#1311]: https://github.com/RustCrypto/utils/pull/1311
17+
[#1312]: https://github.com/RustCrypto/utils/pull/1312
18+
719
## 0.2.2 (2025-12-28)
820
### Added
921
- Unsigned `CtNeg` impls ([#1306])

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.2.2"
8+
version = "0.2.3"
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"

0 commit comments

Comments
 (0)