From 95408effc54d35c20c1bc4a700497a7517ec7da6 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 27 Mar 2021 07:48:35 -0700 Subject: [PATCH] pbkdf2 v0.7.5 (#152) --- Cargo.lock | 2 +- pbkdf2/CHANGELOG.md | 6 ++++++ pbkdf2/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85dafcdf..84225d3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.7.4" +version = "0.7.5" dependencies = [ "base64ct", "crypto-mac 0.10.0", diff --git a/pbkdf2/CHANGELOG.md b/pbkdf2/CHANGELOG.md index 0c1a0347..3f695d1d 100644 --- a/pbkdf2/CHANGELOG.md +++ b/pbkdf2/CHANGELOG.md @@ -5,6 +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.7.5 (2021-03-27) +### Fixed +- Pin `password-hash` to v0.1.2 or newer ([#151]) + +[#151]: https://github.com/RustCrypto/password-hashing/pull/151 + ## 0.7.4 (2021-03-17) ### Changed - Bump `base64ct` dependency to v1.0 ([#144]) diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index c493e765..8220b6db 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbkdf2" -version = "0.7.4" +version = "0.7.5" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Generic implementation of PBKDF2"