From c48f3310d9787e5506343f9c97645667e377e147 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 19 Mar 2023 16:40:52 +0100 Subject: [PATCH] ascon v0.3.1 (#52) --- Cargo.lock | 2 +- ascon/CHANGELOG.md | 6 ++++++ ascon/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 049fc8f..931ec85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ascon" -version = "0.3.1-pre" +version = "0.3.1" diff --git a/ascon/CHANGELOG.md b/ascon/CHANGELOG.md index 817f975..e1a4204 100644 --- a/ascon/CHANGELOG.md +++ b/ascon/CHANGELOG.md @@ -5,6 +5,12 @@ 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.3.1 (2023-03-19) +### Changed +- Drop MSRV to 1.56 ([#51]) + +[#51]: https://github.com/RustCrypto/sponges/pull/51 + ## 0.3.0 (2023-03-17) ### Added - `State` type and permutation from `ascon-core` crate ([#49]) diff --git a/ascon/Cargo.toml b/ascon/Cargo.toml index dbc6b18..a6bef36 100644 --- a/ascon/Cargo.toml +++ b/ascon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ascon" -version = "0.3.1-pre" +version = "0.3.1" description = "Pure rust implementation of the Ascon permutation" authors = [ "Sebastian Ramacher ",