Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion blake2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +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.11.0 (UNRELEASED)
## 0.11.0 (2026-08-26)
### Added
- `zeroize` support ([#545])
- `Blake2b128`, `Blake2b256`, `Blake2s128` type aliases ([#564])
- Unkeyed hashing support ([#612])

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is #510 worth mentioning here?

- `CustomizedInit` support ([#664])
- `alloc` crate feature ([#678])

### Changed
Expand All @@ -18,10 +22,16 @@ 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])

[#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
Expand Down
2 changes: 1 addition & 1 deletion blake2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading