From e8a02eb7a5f5be52b5656d2a8046abb3ca3c3c1a Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 21 Apr 2026 08:09:38 -0600 Subject: [PATCH] bcrypt-pbkdf v0.11.0 --- Cargo.lock | 2 +- bcrypt-pbkdf/CHANGELOG.md | 20 ++++++++++++++++++++ bcrypt-pbkdf/Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e80d384..4b13660c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,7 +50,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "bcrypt-pbkdf" -version = "0.11.0-rc.6" +version = "0.11.0" dependencies = [ "blowfish", "hex-literal", diff --git a/bcrypt-pbkdf/CHANGELOG.md b/bcrypt-pbkdf/CHANGELOG.md index c5a9bba4..6650e148 100644 --- a/bcrypt-pbkdf/CHANGELOG.md +++ b/bcrypt-pbkdf/CHANGELOG.md @@ -5,6 +5,26 @@ 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 (2026-04-22) +### Added +- `zeroize` feature ([#539]) + +### Changed +- Bump edition to 2024; MSRV 1.85 ([#563]) +- Switch from `std::error::Error` to `core::error::Error` ([#767]) +- Bump `sha2` to v0.11 ([#872]) +- Bump `blowfish` to v0.10 ([#887]) + +### Removed +- `std` feature ([#822]) + +[#539]: https://github.com/RustCrypto/password-hashes/pull/539 +[#563]: https://github.com/RustCrypto/password-hashes/pull/563 +[#767]: https://github.com/RustCrypto/password-hashes/pull/767 +[#822]: https://github.com/RustCrypto/password-hashes/pull/822 +[#872]: https://github.com/RustCrypto/password-hashes/pull/872 +[#887]: https://github.com/RustCrypto/password-hashes/pull/887 + ## 0.10.0 (2023-03-04) ### Added - Support for `alloc`-free usage ([#372]) diff --git a/bcrypt-pbkdf/Cargo.toml b/bcrypt-pbkdf/Cargo.toml index 7a699c09..53efecb1 100644 --- a/bcrypt-pbkdf/Cargo.toml +++ b/bcrypt-pbkdf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bcrypt-pbkdf" -version = "0.11.0-rc.6" +version = "0.11.0" description = "bcrypt-pbkdf password-based key derivation function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"