diff --git a/Cargo.lock b/Cargo.lock index 43eac902..f66223f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "slh-dsa" -version = "0.0.1" +version = "0.0.2" dependencies = [ "aes", "cipher", diff --git a/slh-dsa/CHANGELOG.md b/slh-dsa/CHANGELOG.md new file mode 100644 index 00000000..5858d7de --- /dev/null +++ b/slh-dsa/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +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) + +- Initial release diff --git a/slh-dsa/Cargo.toml b/slh-dsa/Cargo.toml index 479dc920..a2a56432 100644 --- a/slh-dsa/Cargo.toml +++ b/slh-dsa/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "slh-dsa" -version = "0.0.1" +description = """ +Pure Rust implementation of the SLH-DSA (aka SPHINCS+) as described in the +FIPS-205 Inital Public Draft +""" +version = "0.0.2" edition = "2021" rust-version = "1.75" license = "Apache-2.0 OR MIT"