Skip to content

Commit a948808

Browse files
authored
bcrypt-pbkdf v0.7.1 (RustCrypto#226)
1 parent fe5d1e3 commit a948808

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bcrypt-pbkdf/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 0.7.0 (2021-08-27)
8+
## 0.7.1 (2021-08-27)
9+
### Changed
10+
- Bump `pbkdf2` dependency to v0.9 ([#223])
11+
12+
[#223]: https://github.com/RustCrypto/password-hashes/pull/223
13+
14+
## 0.7.0 (2021-08-27) [YANKED]
915
### Changed
1016
- Relax `zeroize` requirements ([#195])
1117
- Use `resolver = "2"`; MSRV 1.51+ ([#220])

bcrypt-pbkdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bcrypt-pbkdf"
3-
version = "0.7.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.7.1" # Also update html_root_url in lib.rs when bumping this
44
description = "bcrypt-pbkdf password-based key derivation function"
55
authors = ["RustCrypto Developers"]
66
repository = "https://github.com/RustCrypto/password-hashes/tree/master/bcrypt-pbkdf"

bcrypt-pbkdf/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![doc(
99
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
1010
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
11-
html_root_url = "https://docs.rs/bcrypt-pbkdf/0.7.0"
11+
html_root_url = "https://docs.rs/bcrypt-pbkdf/0.7.1"
1212
)]
1313

1414
extern crate alloc;

0 commit comments

Comments
 (0)