diff --git a/Cargo.lock b/Cargo.lock index d5c6d9761..37be0bee3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "password-hash" -version = "0.6.0" +version = "0.6.1" dependencies = [ "getrandom", "phc", diff --git a/password-hash/CHANGELOG.md b/password-hash/CHANGELOG.md index 1cc235314..473617343 100644 --- a/password-hash/CHANGELOG.md +++ b/password-hash/CHANGELOG.md @@ -5,7 +5,16 @@ 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.6.0 (2026-03-10) +## 0.6.1 (2026-04-07) +### Changed +- Bounds for blanket impl of `PasswordVerifier` for `phc::PasswordHash` [BREAKING] ([#2370]) + +[#2370]: https://github.com/RustCrypto/traits/pull/2370 + +## 0.6.0 (2026-03-10) [YANKED] + +NOTE: this release was yanked to accommodate breaking changes introduced in v0.6.1. + ### Added - Generic `H` param to traits to support multiple string formats e.g. PHC, MCF ([#2110]) - Implement `From` for `Error` ([#2124]) diff --git a/password-hash/Cargo.toml b/password-hash/Cargo.toml index 478fb69f9..d51c8166f 100644 --- a/password-hash/Cargo.toml +++ b/password-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "password-hash" -version = "0.6.0" +version = "0.6.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"