diff --git a/Cargo.lock b/Cargo.lock index 75b16744..c72dcd7c 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 bd478a3f..675474d9 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 6a816f24..374a0b99 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"