From db91f147d7f49b58c41f44f03e59de79cb7f2093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Wed, 8 Jul 2026 18:32:17 +0300 Subject: [PATCH 1/2] Release poly1305 v0.9.1 --- Cargo.lock | 10 +++++----- poly1305/CHANGELOG.md | 6 ++++++ poly1305/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7c9dfe..470f503 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" [[package]] name = "poly1305" -version = "0.9.0" +version = "0.9.1" dependencies = [ "cpufeatures", "hex-literal", @@ -417,18 +417,18 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "zerocopy" -version = "0.8.52" +version = "0.8.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f" +checksum = "75726053136156d419e285b9b7eddaaea9e3fea6ce32eed44a89901f0bd98de1" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.52" +version = "0.8.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930" +checksum = "4714fd92cf900833d49538023a9b3915155210801d1c1169eba513b2addefd71" dependencies = [ "proc-macro2", "quote", diff --git a/poly1305/CHANGELOG.md b/poly1305/CHANGELOG.md index c92133a..a58f662 100644 --- a/poly1305/CHANGELOG.md +++ b/poly1305/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.9.1 (2026-07-09) +### Fixed +- Unsound implementation of zeroization ([#343]) + +[#343]: https://github.com/RustCrypto/universal-hashes/pull/343 + ## 0.9.0 (2026-05-10) ### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#228]) diff --git a/poly1305/Cargo.toml b/poly1305/Cargo.toml index 96688be..c5b7a1f 100644 --- a/poly1305/Cargo.toml +++ b/poly1305/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poly1305" -version = "0.9.0" +version = "0.9.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" From 02130f95e6be0fbe1651d1ccf23f72eca7c90325 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Wed, 8 Jul 2026 18:57:30 +0300 Subject: [PATCH 2/2] tweak release date --- poly1305/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poly1305/CHANGELOG.md b/poly1305/CHANGELOG.md index a58f662..565059b 100644 --- a/poly1305/CHANGELOG.md +++ b/poly1305/CHANGELOG.md @@ -5,7 +5,7 @@ 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.9.1 (2026-07-09) +## 0.9.1 (2026-07-08) ### Fixed - Unsound implementation of zeroization ([#343])