From 44fb24203dc2380c9e6dfb2dba2860c135fd2d29 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 16 Jul 2026 15:40:30 -0600 Subject: [PATCH] polyval v0.7.3 --- 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 a7e54ef..7e93ee6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "polyval" -version = "0.7.2" +version = "0.7.3" dependencies = [ "cpubits", "cpufeatures", diff --git a/polyval/CHANGELOG.md b/polyval/CHANGELOG.md index b3173e3..abf7c6e 100644 --- a/polyval/CHANGELOG.md +++ b/polyval/CHANGELOG.md @@ -5,10 +5,20 @@ 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.7.3 (2026-07-16) +### Fixed +- Restore accidentally removed `Zeroize` impl on `FieldElement` ([#350]) + +[#350]: https://github.com/RustCrypto/universal-hashes/pull/350 + ## 0.7.2 (2026-07-11) +### Changed +- Tweak zeroization ([#343]) + ### Fixed - Actually detect `avx`+`pclmulqdq` as [#317] actually was detecting 256-bit PCLMULQDQ ([#347]) +[#343]: https://github.com/RustCrypto/universal-hashes/pull/343 [#347]: https://github.com/RustCrypto/universal-hashes/pull/347 ## 0.7.1 (2026-02-28) diff --git a/polyval/Cargo.toml b/polyval/Cargo.toml index 8451870..d6cbd27 100644 --- a/polyval/Cargo.toml +++ b/polyval/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polyval" -version = "0.7.2" +version = "0.7.3" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"