Skip to content

Commit 7d6927b

Browse files
authored
cmov v0.3.1 (#959)
1 parent 840f11b commit 7d6927b

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.

cmov/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.3.1 (2023-10-14)
8+
### Added
9+
- `CmovEq` impl for slices ([#954])
10+
11+
### Changed
12+
- Use `#[inline]` instead of `#[inline(always)]` ([#924])
13+
- `CmovEq` now invokes XOR within the ASM block ([#925])
14+
15+
[#924]: https://github.com/RustCrypto/utils/pull/924
16+
[#925]: https://github.com/RustCrypto/utils/pull/925
17+
[#954]: https://github.com/RustCrypto/utils/pull/954
18+
719
## 0.3.0 (2023-04-02)
820
### Added
921
- `miri` support by forcing the `portable` backend ([#864])

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"
9+
version = "0.3.1"
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)