From 1294f9e543eb5d8ef4f37a4a186beb4beb3310b8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 11 Jul 2026 13:25:33 -0600 Subject: [PATCH] polyval v0.7.2 --- Cargo.lock | 2 +- polyval/CHANGELOG.md | 6 ++++++ polyval/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 470f503..d762ec5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "polyval" -version = "0.7.1" +version = "0.7.2" dependencies = [ "cpubits", "cpufeatures", diff --git a/polyval/CHANGELOG.md b/polyval/CHANGELOG.md index f2d9eea..b3173e3 100644 --- a/polyval/CHANGELOG.md +++ b/polyval/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.7.2 (2026-07-11) +### Fixed +- Actually detect `avx`+`pclmulqdq` as [#317] actually was detecting 256-bit PCLMULQDQ ([#347]) + +[#347]: https://github.com/RustCrypto/universal-hashes/pull/347 + ## 0.7.1 (2026-02-28) ### Fixed - Detect `avx`+`pclmulqdq` features on `x86`/`x86_64` targets ([#317], [#318]) diff --git a/polyval/Cargo.toml b/polyval/Cargo.toml index d8b81b4..8451870 100644 --- a/polyval/Cargo.toml +++ b/polyval/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polyval" -version = "0.7.1" +version = "0.7.2" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"