Skip to content

Commit 1ee89d6

Browse files
authored
spki v0.8.0 (#2277)
1 parent 35e35bc commit 1ee89d6

File tree

14 files changed

+38
-14
lines changed

14 files changed

+38
-14
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.

cmpv2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818
[dependencies]
1919
crmf = "=0.3.0-pre.0"
2020
der = { version = "0.8", features = ["alloc", "derive", "flagset", "oid"] }
21-
spki = "0.8.0-rc.4"
21+
spki = "0.8"
2222
x509-cert = { version = "0.3.0-rc.4", default-features = false }
2323

2424
# optional features

cms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717
[dependencies]
1818
const-oid = { version = "0.10", features = ["db"] }
1919
der = { version = "0.8", features = ["ber", "derive", "oid"] }
20-
spki = "0.8.0-rc.4"
20+
spki = "0.8"
2121
x509-cert = { version = "0.3.0-rc.4", default-features = false }
2222

2323
# optional dependencies

crmf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818
[dependencies]
1919
cms = "=0.3.0-pre.2"
2020
der = { version = "0.8", features = ["alloc", "derive"] }
21-
spki = "0.8.0-rc.3"
21+
spki = "0.8"
2222
x509-cert = { version = "0.3.0-rc.4", default-features = false }
2323

2424
[dev-dependencies]

gss-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
der = { version = "0.8", features = ["oid", "alloc"] }
20-
spki = "0.8.0-rc.4"
20+
spki = "0.8"
2121
x509-cert = { version = "0.3.0-rc.4", default-features = false }
2222

2323
[dev-dependencies]

pkcs1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
der = { version = "0.8", features = ["oid"] }
20-
spki = "0.8.0-rc.4"
20+
spki = "0.8"
2121

2222
[dev-dependencies]
2323
const-oid = { version = "0.10", features = ["db"] }

pkcs12/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
der = { version = "0.8", features = ["alloc", "derive", "oid"], default-features = false }
20-
spki = { version = "0.8.0-rc.4", default-features = false }
20+
spki = { version = "0.8", default-features = false }
2121
x509-cert = { version = "0.3.0-rc.4", default-features = false }
2222
const-oid = { version = "0.10", features = ["db"], default-features = false }
2323
cms = { version = "=0.3.0-pre.2", default-features = false }

pkcs5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
der = { version = "0.8", features = ["oid"] }
20-
spki = "0.8.0-rc.4"
20+
spki = "0.8"
2121

2222
# optional dependencies
2323
cbc = { version = "0.2.0-rc.4", optional = true }

pkcs8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818

1919
[dependencies]
2020
der = { version = "0.8.0-rc.12", features = ["oid"] }
21-
spki = "0.8.0-rc.4"
21+
spki = "0.8"
2222

2323
# optional dependencies
2424
rand_core = { version = "0.10", optional = true, default-features = false }

spki/CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,38 @@ 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.8.0 (2026-04-03)
8+
### Added
9+
- Implement `Hash` for `AlgorithmIdentifier` ([#1414])
10+
- `der::Writer` adapter for `Digest` ([#1769])
11+
- Implement `core::error::Error` for `Error` ([#2274])
12+
13+
### Changed
14+
- Borrow the public key in `spki::from_key` ([#1290])
15+
- Upgrade to the 2024 edition; MSRV 1.85 ([#1670])
16+
- Bump `der` to v0.8 ([#2234])
17+
- Bump `digest` to v0.11 ([#2237])
18+
- Bump `sha2` dependency to v0.11 ([#2273])
19+
20+
### Fixed
21+
- `OidUnknown` reporting ([#1378])
22+
23+
[#1290]: https://github.com/RustCrypto/formats/pull/1290
24+
[#1378]: https://github.com/RustCrypto/formats/pull/1378
25+
[#1414]: https://github.com/RustCrypto/formats/pull/1414
26+
[#1670]: https://github.com/RustCrypto/formats/pull/1670
27+
[#2234]: https://github.com/RustCrypto/formats/pull/2234
28+
[#2237]: https://github.com/RustCrypto/formats/pull/2237
29+
[#2273]: https://github.com/RustCrypto/formats/pull/2273
30+
[#2274]: https://github.com/RustCrypto/formats/pull/2274
31+
732
## 0.7.3 (2023-11-28)
833
### Added
934
- public key to `SubjectPublicKeyInfoOwned` helper ([#1269])
1035

1136
[#1269]: https://github.com/RustCrypto/formats/pull/1269
1237

1338
## 0.7.2 (2023-05-04)
14-
1539
### Added
1640
- `AlgorithmIdentifierWithOid` trait ([#986])
1741
- `SignatureBitStringEncoding` trait ([#1047])

0 commit comments

Comments
 (0)