Skip to content

Commit c1dfcd2

Browse files
authored
frodo-kem v0.1.0 (#295)
## Added - Preliminary `no_std` support (#238) ## Changed - Edition changed to 2024 and MSRV bumped to 1.85 (#118) - Relax MSRV policy and allow MSRV bumps in patch releases - Bump `hybrid-array` dependency to v0.4 (#129) - Bump `serdect` dependency to v0.4 (#130) - Bump `getrandom` dependency to v0.4 (#245) - Bump `rand_core` dependency to v0.10 (#245) - Bump `sha3` dependency to v0.11 (#282) - Bump `aes` to v0.9 (#294) - Bump `getrandom` to v0.4 (#294) - Bump `chacha20` to v0.10 (#294) - Bump `toml` to v1 (#294) ## Removed - `safe-oqs` equivalence tests (#166) ## Fixed - Return error instead of panicking on empty `serde` input (#259) - OpenSSL EVP contexts memory leak (#260)
1 parent 4abaea7 commit c1dfcd2

3 files changed

Lines changed: 31 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.

frodo-kem/CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,40 @@ 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.1.0 (UNRELEASED)
8+
## 0.1.0 (2026-04-28)
9+
### Added
10+
- Preliminary `no_std` support ([#238])
11+
912
### Changed
1013
- Edition changed to 2024 and MSRV bumped to 1.85 ([#118])
1114
- Relax MSRV policy and allow MSRV bumps in patch releases
15+
- Bump `hybrid-array` dependency to v0.4 ([#129])
16+
- Bump `serdect` dependency to v0.4 ([#130])
17+
- Bump `getrandom` dependency to v0.4 ([#245])
18+
- Bump `rand_core` dependency to v0.10 ([#245])
19+
- Bump `sha3` dependency to v0.11 ([#282])
20+
- Bump `aes` to v0.9 ([#294])
21+
- Bump `getrandom` to v0.4 ([#294])
22+
- Bump `chacha20` to v0.10 ([#294])
23+
- Bump `toml` to v1 ([#294])
24+
25+
### Removed
26+
- `safe-oqs` equivalence tests ([#166])
27+
28+
### Fixed
29+
- Return error instead of panicking on empty `serde` input ([#259])
30+
- OpenSSL EVP contexts memory leak ([#260])
1231

1332
[#118]: https://github.com/RustCrypto/KEMs/pull/118
33+
[#129]: https://github.com/RustCrypto/KEMs/pull/129
34+
[#130]: https://github.com/RustCrypto/KEMs/pull/130
35+
[#166]: https://github.com/RustCrypto/KEMs/pull/166
36+
[#238]: https://github.com/RustCrypto/KEMs/pull/238
37+
[#245]: https://github.com/RustCrypto/KEMs/pull/245
38+
[#259]: https://github.com/RustCrypto/KEMs/pull/259
39+
[#260]: https://github.com/RustCrypto/KEMs/pull/260
40+
[#282]: https://github.com/RustCrypto/KEMs/pull/282
41+
[#294]: https://github.com/RustCrypto/KEMs/pull/294
1442

1543
## 0.0.1 (2025-01-19)
1644
- Initial release

frodo-kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frodo-kem"
3-
version = "0.1.0-pre.3"
3+
version = "0.1.0"
44
description = "Pure Rust implementation of FrodoKEM and eFrodoKEM"
55
authors = ["The RustCrypto Team"]
66
documentation = "https://docs.rs/frodo-kem"

0 commit comments

Comments
 (0)