Skip to content

Commit 9cba5a5

Browse files
authored
cmov v0.3.0 (#886)
1 parent 66c6226 commit 9cba5a5

File tree

3 files changed

+18
-2
lines changed

3 files changed

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

cmov/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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.0 (2023-04-02)
8+
### Added
9+
- `miri` support by forcing the `portable` backend ([#864])
10+
- Constant-time equality comparisons ([#873])
11+
12+
### Changed
13+
- Make `Cmov::cmovz` a provided method ([#871])
14+
15+
### Fixed
16+
- Builds on `x86` (32-bit) targets ([#863])
17+
18+
[#863]: https://github.com/RustCrypto/utils/pull/863
19+
[#864]: https://github.com/RustCrypto/utils/pull/864
20+
[#871]: https://github.com/RustCrypto/utils/pull/881
21+
[#873]: https://github.com/RustCrypto/utils/pull/883
22+
723
## 0.2.0 (2023-02-26)
824
### Added
925
- `Condition` alias for `u8` ([#830])

cmov/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ constant-time and not be rewritten as branches by the compiler.
66
Provides wrappers for the CMOV family of instructions on x86/x86_64
77
and CSEL on AArch64.
88
"""
9-
version = "0.3.0-pre"
9+
version = "0.3.0"
1010
authors = ["RustCrypto Developers"]
1111
license = "Apache-2.0 OR MIT"
1212
repository = "https://github.com/RustCrypto/utils/tree/master/cmov"

0 commit comments

Comments
 (0)