From b5c50247f506e20e490e6ca320ce444c844d09b8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri <bascule@gmail.com> Date: Sun, 18 Aug 2024 13:00:48 -0600 Subject: [PATCH] slh-dsa v0.1.0 --- Cargo.lock | 2 +- slh-dsa/CHANGELOG.md | 13 ++++++++++++- slh-dsa/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b07eab20..6eedea80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1161,7 +1161,7 @@ dependencies = [ [[package]] name = "slh-dsa" -version = "0.0.2" +version = "0.1.0" dependencies = [ "aes", "cipher", diff --git a/slh-dsa/CHANGELOG.md b/slh-dsa/CHANGELOG.md index 5858d7de..8ae58232 100644 --- a/slh-dsa/CHANGELOG.md +++ b/slh-dsa/CHANGELOG.md @@ -5,6 +5,17 @@ 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.0.2 (2024-05-31) +## 0.1.0 (2024-08-18) +### Changed +- Implement changes from FIP 205 Initial Public Draft -> FIPS 205 Final ([#844]) + +### Fixed +- `no_std` support ([#845]) +- Enable `derive` feature of `zerocopy` ([#847]) +[#844]: https://github.com/RustCrypto/signatures/pull/844 +[#845]: https://github.com/RustCrypto/signatures/pull/845 +[#847]: https://github.com/RustCrypto/signatures/pull/847 + +## 0.0.2 (2024-05-31) - Initial release diff --git a/slh-dsa/Cargo.toml b/slh-dsa/Cargo.toml index 41681b21..deddafb2 100644 --- a/slh-dsa/Cargo.toml +++ b/slh-dsa/Cargo.toml @@ -4,7 +4,7 @@ description = """ Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the FIPS-205 standard """ -version = "0.0.2" +version = "0.1.0" edition = "2021" rust-version = "1.75" license = "Apache-2.0 OR MIT"