From 0b1de2e25d4e476905263f4edd52a80ee855a518 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Sat, 2 Mar 2024 19:39:05 -0800 Subject: [PATCH] polyval v0.6.2 Added - add `new_with_init_block` (#195) Changed - implement Karatsuba multiplication for arm64 (#181) --- Cargo.lock | 2 +- polyval/CHANGELOG.md | 10 ++++++++++ polyval/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e460eb..974aeee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,7 +78,7 @@ dependencies = [ [[package]] name = "polyval" -version = "0.6.1" +version = "0.6.2" dependencies = [ "cfg-if", "cpufeatures", diff --git a/polyval/CHANGELOG.md b/polyval/CHANGELOG.md index 66416e6..a25691e 100644 --- a/polyval/CHANGELOG.md +++ b/polyval/CHANGELOG.md @@ -5,6 +5,16 @@ 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.6.2 (2022-03-03) +### Added +- add `new_with_init_block` ([#195]) + +### Changed +- implement Karatsuba multiplication for arm64 ([#181]) + +[#195]: https://github.com/RustCrypto/universal-hashes/pull/195 +[#181]: https://github.com/RustCrypto/universal-hashes/pull/181 + ## 0.6.1 (2023-06-16) ### Added - Support for `polyval_armv8` on Rust 1.61+ ([#179]) diff --git a/polyval/Cargo.toml b/polyval/Cargo.toml index 9dc0dfb..45c7d0c 100644 --- a/polyval/Cargo.toml +++ b/polyval/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polyval" -version = "0.6.1" +version = "0.6.2" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = """