From e41b547a12e6d0bb2392ff724dbaa948ac8217c5 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Sat, 2 Mar 2024 19:41:46 -0800 Subject: [PATCH] ghash v0.5.1 Added - add `new_with_init_block` (#195) --- Cargo.lock | 2 +- ghash/CHANGELOG.md | 6 ++++++ ghash/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 974aeee..7921dfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "ghash" -version = "0.5.0" +version = "0.5.1" dependencies = [ "hex-literal", "opaque-debug", diff --git a/ghash/CHANGELOG.md b/ghash/CHANGELOG.md index 82d4e7b..a26559a 100644 --- a/ghash/CHANGELOG.md +++ b/ghash/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.5.1 (2024-03-03) +### Added +- add `new_with_init_block` ([#195]) + +[#195]: https://github.com/RustCrypto/universal-hashes/pull/195 + ## 0.5.0 (2022-07-31) ### Changed - Relax `zeroize` constraints ([#147]) diff --git a/ghash/Cargo.toml b/ghash/Cargo.toml index 4c5d26a..b9e5e9b 100644 --- a/ghash/Cargo.toml +++ b/ghash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ghash" -version = "0.5.0" +version = "0.5.1" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = """ @@ -17,7 +17,7 @@ edition = "2021" [dependencies] opaque-debug = "0.3" -polyval = { version = "0.6", path = "../polyval" } +polyval = { version = "0.6.2", path = "../polyval" } # optional dependencies zeroize = { version = "1", optional = true, default-features = false }