From 95ca341996d28ba58cba89d91098343975ebbf72 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 28 Feb 2026 11:20:52 -0700 Subject: [PATCH] polyval v0.7.1 --- Cargo.lock | 2 +- polyval/CHANGELOG.md | 7 +++++++ polyval/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 559affe..4b91383 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,7 +265,7 @@ dependencies = [ [[package]] name = "polyval" -version = "0.7.0" +version = "0.7.1" dependencies = [ "cpubits", "cpufeatures", diff --git a/polyval/CHANGELOG.md b/polyval/CHANGELOG.md index 175bbc1..b1cd331 100644 --- a/polyval/CHANGELOG.md +++ b/polyval/CHANGELOG.md @@ -5,6 +5,13 @@ 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.1 (2026-02-28) +### Fixed +- Detect `avx`+`pclmulqdq` features on `x86`/`x86_64` targets ([#317], [#318]) + +[#317]: https://github.com/RustCrypto/universal-hashes/pull/317 +[#318]: https://github.com/RustCrypto/universal-hashes/pull/318 + ## 0.7.0 (2026-02-27) ### Added - `hazmat` feature that exposes `FieldElement` type ([#279]) diff --git a/polyval/Cargo.toml b/polyval/Cargo.toml index 9b9358d..d8b81b4 100644 --- a/polyval/Cargo.toml +++ b/polyval/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polyval" -version = "0.7.0" +version = "0.7.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"