Skip to content

Commit 2e94fb2

Browse files
authored
module-lattice v0.2.2 (#292)
## Fixed - Avoid UDIV in compiled output on ARM targets (#289)
1 parent 6d45396 commit 2e94fb2

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

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.

ml-kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ zeroize = ["module-lattice/zeroize", "dep:zeroize"]
2626

2727
[dependencies]
2828
array = { version = "0.4.8", package = "hybrid-array", features = ["ctutils", "extra-sizes"] }
29-
module-lattice = { version = "0.2", features = ["ctutils"] }
29+
module-lattice = { version = "0.2.2", features = ["ctutils"] }
3030
kem = "0.3"
3131
rand_core = "0.10"
3232
sha3 = { version = "0.11", default-features = false }

module-lattice/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.2 (2026-04-28)
9+
### Fixed
10+
- Avoid UDIV in compiled output on ARM targets ([#289])
11+
12+
[#289]: https://github.com/RustCrypto/KEMs/pull/289
13+
814
## 0.2.1 (2026-04-03)
915
### Added
1016
- Impl `ctutils::CtEq` for `Polynomial`, `Vector`, and `NttMatrix` ([#285])

module-lattice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Functionality shared between the `ml-kem` and `ml-dsa` crates, including linear
55
degree-256 polynomials over a prime-order field, vectors of such polynomials, and NTT polynomials
66
and vectors, as well as packing of polynomials into coefficients with a specified number of bits
77
"""
8-
version = "0.2.1"
8+
version = "0.2.2"
99
edition = "2024"
1010
rust-version = "1.85"
1111
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)