diff --git a/Cargo.lock b/Cargo.lock index 1ee38868..76df1755 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.7.3" +version = "0.7.4" dependencies = [ "base64ct", "crypto-mac 0.10.0", diff --git a/pbkdf2/CHANGELOG.md b/pbkdf2/CHANGELOG.md index 6bcf6686..0c1a0347 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.4 (2021-03-17) +### Changed +- Bump `base64ct` dependency to v1.0 ([#144]) + +[#144]: https://github.com/RustCrypto/password-hashing/pull/144 + ## 0.7.3 (2021-02-08) ### Changed - Enable `rand_core` feature of `password-hash` ([#130]) diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index 80d8a4db..645d5b1e 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbkdf2" -version = "0.7.3" +version = "0.7.4" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Generic implementation of PBKDF2"