From aa5da2013e123c33e6aaba7b00d1a3e1eb41f6cb Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 27 Jul 2023 22:09:49 +0200 Subject: [PATCH] ascon v0.4.0 (#58) --- Cargo.lock | 11 ++++++++++- ascon/CHANGELOG.md | 9 +++++++++ ascon/Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 931ec85..22c0524 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,13 @@ version = 3 [[package]] name = "ascon" -version = "0.3.1" +version = "0.4.0" +dependencies = [ + "zeroize", +] + +[[package]] +name = "zeroize" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" diff --git a/ascon/CHANGELOG.md b/ascon/CHANGELOG.md index e1a4204..a5ec2de 100644 --- a/ascon/CHANGELOG.md +++ b/ascon/CHANGELOG.md @@ -5,6 +5,15 @@ 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.4.0 (2023-07-27) +### Added +- `zeroize` feature ([#57]) + +### Removed +- Implementation of `Copy` trait for `State` ([#57]) + +[#57]: https://github.com/RustCrypto/sponges/pull/57 + ## 0.3.1 (2023-03-19) ### Changed - Drop MSRV to 1.56 ([#51]) diff --git a/ascon/Cargo.toml b/ascon/Cargo.toml index e9a2a1a..9b4dea5 100644 --- a/ascon/Cargo.toml +++ b/ascon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ascon" -version = "0.4.0-pre" +version = "0.4.0" description = "Pure rust implementation of the Ascon permutation" authors = [ "Sebastian Ramacher ",