From 2bd94e986034bae3aa2738002b2ba850e5816133 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 1 Feb 2021 09:16:07 -0800 Subject: [PATCH] pbkdf2 v0.7.2 (#120) --- Cargo.lock | 2 +- pbkdf2/CHANGELOG.md | 6 ++++++ pbkdf2/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0342a7e..243c452e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.7.1" +version = "0.7.2" dependencies = [ "base64ct", "crypto-mac 0.10.0", diff --git a/pbkdf2/CHANGELOG.md b/pbkdf2/CHANGELOG.md index d2bf8af5..f6634e0f 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.2 (2021-02-01) +### Changed +- Bump `base64ct` dependency to v0.2 ([#119]) + +[#119]: https://github.com/RustCrypto/password-hashing/pull/119 + ## 0.7.1 (2021-01-29) ### Removed - `alloc` dependencies for `simple` feature ([#107]) diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index b444976e..b8b6a37d 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbkdf2" -version = "0.7.1" +version = "0.7.2" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Generic implementation of PBKDF2"