Skip to content

Commit 869d2d7

Browse files
authored
pkcs5 v0.2.1 (#389)
1 parent 3cdb50d commit 869d2d7

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkcs5/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.2.1 (2021-04-29)
8+
### Changed
9+
- Bump `aes` to v0.7 ([#388])
10+
- Bump `block-modes` to v0.8 ([#388])
11+
- Bump `hmac` to v0.11 ([#388])
12+
- Bump `pbkdf2` to v0.8 ([#388])
13+
14+
[#388]: https://github.com/RustCrypto/utils/pull/388
15+
716
## 0.2.0 (2021-03-22)
817
### Changed
918
- Bump `der` to v0.3 ([#354])

pkcs5/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs5"
3-
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
66
Password-Based Cryptography Specification Version 2.1 (RFC 8018)

pkcs5/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#![doc(
2121
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
2222
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
23-
html_root_url = "https://docs.rs/pkcs5/0.2.0"
23+
html_root_url = "https://docs.rs/pkcs5/0.2.1"
2424
)]
2525
#![forbid(unsafe_code, clippy::unwrap_used)]
2626
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)