From 42c308be8ae5725dcd3131189eaee9c4eb83168a Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 29 Jan 2021 08:09:50 -0800 Subject: [PATCH] pbkdf2 v0.7.1 (#108) --- 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 cd90f81e5..4d335627b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.7.0" +version = "0.7.1" dependencies = [ "base64ct", "crypto-mac 0.10.0", diff --git a/pbkdf2/CHANGELOG.md b/pbkdf2/CHANGELOG.md index 61743d797..d2bf8af55 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.1 (2021-01-29) +### Removed +- `alloc` dependencies for `simple` feature ([#107]) + +[#107]: https://github.com/RustCrypto/password-hashing/pull/107 + ## 0.7.0 (2021-01-29) ### Added - PHC hash format support using `password-hash` crate ([#82]) diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index 2ca3e4412..1ea579301 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbkdf2" -version = "0.7.0" +version = "0.7.1" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Generic implementation of PBKDF2"