Skip to content

Commit d1aba3a

Browse files
authored
release pbkdf2 v0.5.0 + scrypt v0.4.0 (RustCrypto#45)
1 parent 233b2db commit d1aba3a

File tree

5 files changed

+27
-15
lines changed

5 files changed

+27
-15
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pbkdf2/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.5.0 (2020-08-18)
9+
### Changed
10+
- Bump `crypto-mac` dependency to v0.9 ([#44])
11+
12+
[#44]: https://github.com/RustCrypto/password-hashing/pull/44
13+
814
## 0.4.0 (2020-06-10)
915
### Changed
1016
- Code improvements ([#33])

pbkdf2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pbkdf2"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Generic implementation of PBKDF2"

scrypt/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.4.0 (2020-08-18)
9+
### Changed
10+
- Bump `pbkdf2` dependency to v0.5 ([#45])
11+
12+
[#45]: https://github.com/RustCrypto/password-hashing/pull/45
13+
814
## 0.3.1 (2020-07-03)
915
### Fixed
1016
- Enable `alloc` feature for `base64`. ([#38])

scrypt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scrypt"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Scrypt password-based key derivation function"
@@ -12,7 +12,7 @@ edition = "2018"
1212

1313
[dependencies]
1414
hmac = "0.9"
15-
pbkdf2 = { version = "0.4", default-features = false, path = "../pbkdf2" }
15+
pbkdf2 = { version = "0.5", default-features = false, path = "../pbkdf2" }
1616
sha2 = { version = "0.9", default-features = false }
1717

1818
base64 = { version = "0.12", default-features = false, features = ["alloc"], optional = true }

0 commit comments

Comments
 (0)