diff --git a/Cargo.lock b/Cargo.lock index 394e78de..f08444e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -375,7 +375,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scrypt" -version = "0.6.2" +version = "0.6.3" dependencies = [ "base64ct", "hmac", diff --git a/scrypt/CHANGELOG.md b/scrypt/CHANGELOG.md index bd2285d9..8454e35f 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.3 (2021-02-20) +### Changed +- Enable `rand_core` feature of `password-hash` ([#139]) + +[#139]: https://github.com/RustCrypto/password-hashing/pull/139 + ## 0.6.2 (2021-02-06) ### Added - `Params` accessor methods ([#123]) diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index f29db076..6bbef361 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrypt" -version = "0.6.2" +version = "0.6.3" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Scrypt password-based key derivation function"