From 48fad82172abcab068b18c6ba25bcfbdfb7d176d Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 18 Mar 2022 17:13:01 -0600 Subject: [PATCH] scrypt v0.10.0 (#293) --- Cargo.lock | 2 +- scrypt/CHANGELOG.md | 8 ++++++++ scrypt/Cargo.toml | 4 ++-- scrypt/src/lib.rs | 1 - 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59a604bb..c2a7a326 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -377,7 +377,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scrypt" -version = "0.10.0-pre" +version = "0.10.0" dependencies = [ "hmac", "password-hash", diff --git a/scrypt/CHANGELOG.md b/scrypt/CHANGELOG.md index 50327e83..8e876602 100644 --- a/scrypt/CHANGELOG.md +++ b/scrypt/CHANGELOG.md @@ -5,6 +5,14 @@ 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.10.0 (2022-03-18) +### Changed +- Bump `password-hash` dependency to v0.4; MSRV 1.57 ([#283]) +- Bump `pbkdf2` dependency to v0.11 ([#291]) + +[#283]: https://github.com/RustCrypto/password-hashes/pull/283 +[#291]: https://github.com/RustCrypto/password-hashes/pull/291 + ## 0.9.0 (2022-02-17) ### Changed - Bump `salsa20` dependency to v0.10, edition to 2021, and MSRV to 1.56 ([#273]) diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index fd7ab012..38436c30 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrypt" -version = "0.10.0-pre" +version = "0.10.0" description = "Scrypt password-based key derivation function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" @@ -10,7 +10,7 @@ repository = "https://github.com/RustCrypto/password-hashes/tree/master/scrypt" keywords = ["crypto", "password", "hashing"] categories = ["cryptography"] edition = "2021" -rust-version = "1.56" +rust-version = "1.57" [dependencies] hmac = "0.12.1" diff --git a/scrypt/src/lib.rs b/scrypt/src/lib.rs index 0abe34fa..9d7ccc10 100644 --- a/scrypt/src/lib.rs +++ b/scrypt/src/lib.rs @@ -51,7 +51,6 @@ #[macro_use] extern crate alloc; - #[cfg(feature = "std")] extern crate std;