Skip to content

Commit b82eb7e

Browse files
authored
ctutils v0.1.2 (#1276)
### Added - Additional methods for `CtOption` (#1274): - `some` - `none` - `into_option_copied` - `filter_by` - `as_inner_unchecked` - `to_inner_unchecked` - `Default` impl for `CtOption` (#1274) - `map!` and `unwrap_or!` macros (#1274) - `u128` methods for `Choice` (#1277): - `from_u128_le` - `from_u128_lsb` - `select_u128`
1 parent da71cbc commit b82eb7e

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ 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.1.2 (2025-12-26)
8+
### Added
9+
- Additional methods for `CtOption` ([#1274]):
10+
- `some`
11+
- `none`
12+
- `into_option_copied`
13+
- `filter_by`
14+
- `as_inner_unchecked`
15+
- `to_inner_unchecked`
16+
- `Default` impl for `CtOption` ([#1274])
17+
- `map!` and `unwrap_or!` macros ([#1274])
18+
- `u128` methods for `Choice` ([#1277]):
19+
- `from_u128_le`
20+
- `from_u128_lsb`
21+
- `select_u128`
22+
23+
[#1274]: https://github.com/RustCrypto/utils/pull/1274
24+
[#1277]: https://github.com/RustCrypto/utils/pull/1277
25+
726
## 0.1.1 (2025-12-26)
827
### Added
928
- Additional `const fn` constructor and predication methods for `Choice` ([#1266], [#1272])

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.1.1"
8+
version = "0.1.2"
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)