From 20b811fa6e5d0782d65d1d4a1c848506c2869a5a Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 19 Jan 2025 16:36:44 -0700 Subject: [PATCH] frodo-kem v0.0.1 --- Cargo.lock | 2 +- frodo-kem/CHANGELOG.md | 9 +++++++++ frodo-kem/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 frodo-kem/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 13d2937..dbed7de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -506,7 +506,7 @@ checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" [[package]] name = "frodo-kem" -version = "0.4.0" +version = "0.0.1" dependencies = [ "aes", "bincode", diff --git a/frodo-kem/CHANGELOG.md b/frodo-kem/CHANGELOG.md new file mode 100644 index 0000000..b6d51fb --- /dev/null +++ b/frodo-kem/CHANGELOG.md @@ -0,0 +1,9 @@ +# 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.1 (2025-01-19) +- Initial release diff --git a/frodo-kem/Cargo.toml b/frodo-kem/Cargo.toml index 68c112d..7adbe04 100644 --- a/frodo-kem/Cargo.toml +++ b/frodo-kem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frodo-kem" -version = "0.0.0" +version = "0.0.1" description = "Pure Rust implementation of FrodoKEM and eFrodoKEM" authors = ["The RustCrypto Team"] documentation = "https://docs.rs/frodo-kem"