Skip to content

Commit 4180cf2

Browse files
authored
pkcs5 v0.7.0 (#901)
1 parent c29ca3d commit 4180cf2

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

Cargo.lock

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

cms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ x509-cert = { version = "0.2.0-pre", default-features = false, path = "../x509-c
2121
[dev-dependencies]
2222
const-oid = { version = "0.9", features = ["db"] } # TODO: path = "../const-oid"
2323
hex-literal = "0.3"
24-
pkcs5 = { version = "0.6.0-pre", path = "../pkcs5" }
24+
pkcs5 = { version = "0.7", path = "../pkcs5" }
2525

2626
[features]
2727
alloc = ["der/alloc"]

pkcs5/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.7.0 (2023-02-26)
8+
### Changed
9+
- Bump `der` dependency to v0.7 ([#899])
10+
- Bump `spki` dependency to v0.7 ([#900])
11+
12+
[#899]: https://github.com/RustCrypto/formats/pull/899
13+
[#900]: https://github.com/RustCrypto/formats/pull/900
14+
15+
## 0.6.0 (Skipped)
16+
- Skipped to synchronize version number with `der` and `spki`
17+
718
## 0.5.0 (2022-05-08)
819
### Changed
920
- Update `hmac`, `pbkdf2`, and `sha2`

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.6.0-pre"
3+
version = "0.7.0"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
66
Password-Based Cryptography Specification Version 2.1 (RFC 8018)

pkcs8/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spki = { version = "0.7", path = "../spki" }
2121

2222
# optional dependencies
2323
rand_core = { version = "0.6", optional = true, default-features = false }
24-
pkcs5 = { version = "=0.6.0-pre", optional = true, path = "../pkcs5" }
24+
pkcs5 = { version = "0.7", optional = true, path = "../pkcs5" }
2525
subtle = { version = "2", optional = true, default-features = false }
2626

2727
[dev-dependencies]

0 commit comments

Comments
 (0)