diff --git a/Cargo.lock b/Cargo.lock index 243c452e..ae5a4c64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -374,7 +374,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scrypt" -version = "0.6.0" +version = "0.6.1" dependencies = [ "base64ct", "hmac", diff --git a/scrypt/CHANGELOG.md b/scrypt/CHANGELOG.md index d6a832e3..7d12c111 100644 --- a/scrypt/CHANGELOG.md +++ b/scrypt/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.6.1 (2021-02-01) +### Changed +- Bump `base64ct` dependency to v0.2 ([#119]) + +[#119]: https://github.com/RustCrypto/password-hashing/pull/119 + ## 0.6.0 (2021-01-29) ### Added - PHC hash support using `password-hash` crate ([#111]) diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index 90588909..c90463ba 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrypt" -version = "0.6.0" +version = "0.6.1" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Scrypt password-based key derivation function"