Skip to content

Commit 68d3712

Browse files
authored
pkcs8 v0.10.0 (#902)
1 parent 4180cf2 commit 68d3712

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-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.

pkcs1/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ der = { version = "0.7", features = ["oid"], path = "../der" }
1919
spki = { version = "0.7", path = "../spki" }
2020

2121
# optional dependencies
22-
pkcs8 = { version = "=0.10.0-pre", optional = true, default-features = false, path = "../pkcs8" }
22+
pkcs8 = { version = "0.10", optional = true, default-features = false, path = "../pkcs8" }
2323
zeroize = { version = "1", optional = true, default-features = false }
2424

2525
[dev-dependencies]

pkcs8/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.10.0 (2023-02-26)
8+
### Changed
9+
- Use blanket impls for `Decode*` traits ([#785])
10+
- Bump `der` dependency to v0.7 ([#899])
11+
- Bump `spki` dependency to v0.7 ([#900])
12+
- Bump `pkcs5` dependency to v0.7 ([#901])
13+
14+
[#785]: https://github.com/RustCrypto/formats/pull/785
15+
[#899]: https://github.com/RustCrypto/formats/pull/899
16+
[#900]: https://github.com/RustCrypto/formats/pull/900
17+
[#901]: https://github.com/RustCrypto/formats/pull/901
18+
719
## 0.9.0 (2022-05-08)
820
### Added
921
- Error conversion support to `pkcs8::spki::Error` ([#335])

pkcs8/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.10.0-pre"
3+
version = "0.10.0"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208), with additional

sec1/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.65"
1919
base16ct = { version = "0.2", optional = true, default-features = false, path = "../base16ct" }
2020
der = { version = "0.7", optional = true, features = ["oid"], path = "../der" }
2121
generic-array = { version = "0.14.6", optional = true, default-features = false }
22-
pkcs8 = { version = "=0.10.0-pre", optional = true, default-features = false, path = "../pkcs8" }
22+
pkcs8 = { version = "0.10", optional = true, default-features = false, path = "../pkcs8" }
2323
serdect = { version = "0.2", optional = true, default-features = false, features = ["alloc"], path = "../serdect" }
2424
subtle = { version = "2", optional = true, default-features = false }
2525
zeroize = { version = "1", optional = true, default-features = false }

0 commit comments

Comments
 (0)