slh-dsa v0.1.0 (#849)

This commit is contained in:
Tony Arcieri
2024-08-18 13:08:37 -06:00
committed by GitHub
parent cf34cd2ffd
commit 81526ad2de
3 changed files with 14 additions and 3 deletions
Generated
+1 -1
View File
@@ -1161,7 +1161,7 @@ dependencies = [
[[package]]
name = "slh-dsa"
version = "0.0.2"
version = "0.1.0"
dependencies = [
"aes",
"cipher",
+12 -1
View File
@@ -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
+1 -1
View File
@@ -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"