From 3f0bef18bd6888cd003b9599f71f6d060f5e3440 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 10 May 2026 15:04:17 -0600 Subject: [PATCH] ml-kem v0.3.2 --- Cargo.lock | 2 +- ml-kem/CHANGELOG.md | 5 ++++- ml-kem/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8a21b8..d167537 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,7 +786,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "ml-kem" -version = "0.3.0" +version = "0.3.2" dependencies = [ "const-oid", "criterion", diff --git a/ml-kem/CHANGELOG.md b/ml-kem/CHANGELOG.md index 98037a1..f59683d 100644 --- a/ml-kem/CHANGELOG.md +++ b/ml-kem/CHANGELOG.md @@ -5,12 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.3.1 (2026-05-10) +## 0.3.2 (2026-05-10) ### Added - Optional on-by-default heap offload support ([#310]) [#310]: https://github.com/RustCrypto/KEMs/pull/310 +## 0.3.1 +Skipped as it was tagged without a version bump. + ## 0.3.0 (2026-04-28) ### Added - `Seed` support e.g. `DecapsulationKey::from_seed` ([#133], [#138]) diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index ffe4c50..9bb13cf 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -4,7 +4,7 @@ description = """ Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard (formerly known as Kyber) as described in FIPS 203 """ -version = "0.3.0" +version = "0.3.2" edition = "2024" rust-version = "1.85" license = "Apache-2.0 OR MIT"