From cbf9db0698169689445a70ba8d549e296be55b0b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 25 Aug 2026 10:14:14 -0600 Subject: [PATCH] blake2 v0.11.0 --- Cargo.lock | 2 +- blake2/CHANGELOG.md | 15 ++++++++++++++- blake2/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75b167441..c72dcd7cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -49,7 +49,7 @@ dependencies = [ [[package]] name = "blake2" -version = "0.11.0-rc.6" +version = "0.11.0" dependencies = [ "digest", "hex-literal", diff --git a/blake2/CHANGELOG.md b/blake2/CHANGELOG.md index bd478a3f5..675474d98 100644 --- a/blake2/CHANGELOG.md +++ b/blake2/CHANGELOG.md @@ -5,8 +5,11 @@ 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.11.0 (UNRELEASED) +## 0.11.0 (2026-08-26) ### Added +- `zeroize` support ([#545]) +- `Blake2b128`, `Blake2b256`, `Blake2s128` type aliases ([#564]) +- `CustomizedInit` support ([#664]) - `alloc` crate feature ([#678]) ### Changed @@ -18,10 +21,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - `std` crate feature ([#678]) - `Blake2bVar` and `Blake2sVar` types ([#744]) +- SIMD support ([#898]) +### Fixed +- Handling of unkeyed hashes in keyed mode ([#510], [#612]) + +[#510]: https://github.com/RustCrypto/hashes/pull/510 +[#545]: https://github.com/RustCrypto/hashes/pull/545 +[#564]: https://github.com/RustCrypto/hashes/pull/564 +[#612]: https://github.com/RustCrypto/hashes/pull/612 [#652]: https://github.com/RustCrypto/hashes/pull/652 +[#664]: https://github.com/RustCrypto/hashes/pull/664 [#678]: https://github.com/RustCrypto/hashes/pull/678 [#744]: https://github.com/RustCrypto/hashes/pull/744 +[#898]: https://github.com/RustCrypto/hashes/pull/898 ## 0.10.6 (2022-12-16) ### Added diff --git a/blake2/Cargo.toml b/blake2/Cargo.toml index 6a816f244..374a0b99c 100644 --- a/blake2/Cargo.toml +++ b/blake2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2" -version = "0.11.0-rc.6" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"