diff --git a/Cargo.lock b/Cargo.lock index ae5a4c64..7c9c795a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -374,7 +374,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scrypt" -version = "0.6.1" +version = "0.6.2" dependencies = [ "base64ct", "hmac", diff --git a/scrypt/CHANGELOG.md b/scrypt/CHANGELOG.md index 7d12c111..bd2285d9 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.2 (2021-02-06) +### Added +- `Params` accessor methods ([#123]) + +[#123]: https://github.com/RustCrypto/password-hashing/pull/123 + ## 0.6.1 (2021-02-01) ### Changed - Bump `base64ct` dependency to v0.2 ([#119]) diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index c90463ba..f8462f09 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrypt" -version = "0.6.1" +version = "0.6.2" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Scrypt password-based key derivation function"