File tree 3 files changed +22
-3
lines changed
3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
26
## 0.10.2 (2023-04-04)
8
27
### Changed
9
28
- Bump ` spki ` to v0.7.1 ([ #981 ] )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " pkcs8"
3
- version = " 0.11.0-rc.2 "
3
+ version = " 0.11.0-rc.3 "
4
4
description = """
5
5
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
6
6
Private-Key Information Syntax Specification (RFC 5208), with additional
@@ -17,7 +17,7 @@ edition = "2024"
17
17
rust-version = " 1.85"
18
18
19
19
[dependencies ]
20
- der = { version = " 0.8.0-rc.0 " , features = [" oid" ] }
20
+ der = { version = " 0.8.0-rc.2 " , features = [" oid" ] }
21
21
spki = { version = " 0.8.0-rc.0" }
22
22
23
23
# optional dependencies
You can’t perform that action at this time.
0 commit comments