Skip to content

Commit 3f7b96f

Browse files
authored
pkcs8: v0.11.0-rc.3 (#1782)
1 parent ec47459 commit 3f7b96f

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
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.

pkcs8/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ 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.11.0 (UNRELEASED)
8+
9+
### Changed
10+
- eagerly decode PEM labels ([#1163])
11+
- use `pbes2::Parameters::recommended` ([#1430])
12+
- Bump `rand_core` to `0.9` ([#1658])
13+
- Use 2024 edition, bump MSRV to 1.85 ([#1670])
14+
15+
### Added
16+
- custom error types support to the Decode and DecodeValue traits. ([#1055])
17+
- PrivateKeyInfoRef/PrivateKeyInfoOwned ([#1483])
18+
19+
[#1055]: https://github.com/RustCrypto/formats/pull/1055
20+
[#1163]: https://github.com/RustCrypto/formats/pull/1163
21+
[#1430]: https://github.com/RustCrypto/formats/pull/1430
22+
[#1483]: https://github.com/RustCrypto/formats/pull/1483
23+
[#1658]: https://github.com/RustCrypto/formats/pull/1658
24+
[#1670]: https://github.com/RustCrypto/formats/pull/1670
25+
726
## 0.10.2 (2023-04-04)
827
### Changed
928
- Bump `spki` to v0.7.1 ([#981])

pkcs8/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.11.0-rc.2"
3+
version = "0.11.0-rc.3"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208), with additional
@@ -17,7 +17,7 @@ edition = "2024"
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
der = { version = "0.8.0-rc.0", features = ["oid"] }
20+
der = { version = "0.8.0-rc.2", features = ["oid"] }
2121
spki = { version = "0.8.0-rc.0" }
2222

2323
# optional dependencies

0 commit comments

Comments
 (0)