Skip to content

Commit

Permalink
spki v0.6.0 (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored May 8, 2022
1 parent 4fdb849 commit 5eee0cd
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 14 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkcs5/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rust-version = "1.57"

[dependencies]
der = { version = "0.6", features = ["oid"], path = "../der" }
spki = { version = "=0.6.0-pre.3", path = "../spki" }
spki = { version = "0.6", path = "../spki" }

# optional dependencies
cbc = { version = "0.1.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pkcs7/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rust-version = "1.57"

[dependencies]
der = { version = "0.6", features = ["oid"], path = "../der" }
spki = { version = "=0.6.0-pre.3", path = "../spki" }
spki = { version = "0.6", path = "../spki" }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion pkcs8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.57"

[dependencies]
der = { version = "0.6", features = ["oid"], path = "../der" }
spki = { version = "=0.6.0-pre.3", path = "../spki" }
spki = { version = "0.6", path = "../spki" }

# optional dependencies
rand_core = { version = "0.6", optional = true, default-features = false }
Expand Down
23 changes: 23 additions & 0 deletions spki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0 (2022-05-08)
### Added
- `AlgorithmIdentifier::oids()` helper function ([#443])
- Impl `PartialOrd` for `AlgorithmIdentifier` ([#476])
- Impl `DecodeValue` for `AlgorithmIdentifier` ([#449])
- Impl `ValueOrd` for `SubjectPublicKeyInfo` ([#522])

### Changed
- Replace `PublicKeyDocument` with `der` crate's `Document` type ([#571])
- Streaming fingerprint builder ([#616])
- Bump `der` crate dependency to v0.6 ([#653])

### Removed
- `PublicKeyDocument` ([#571])

[#443]: https://github.com/RustCrypto/formats/pull/443
[#449]: https://github.com/RustCrypto/formats/pull/449
[#476]: https://github.com/RustCrypto/formats/pull/476
[#522]: https://github.com/RustCrypto/formats/pull/522
[#571]: https://github.com/RustCrypto/formats/pull/571
[#616]: https://github.com/RustCrypto/formats/pull/616
[#653]: https://github.com/RustCrypto/formats/pull/653

## 0.5.4 (2022-01-05)
### Added
- `Error::KeyMalformed` variant ([#318])
Expand Down
2 changes: 1 addition & 1 deletion spki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spki"
version = "0.6.0-pre.3" # Also update html_root_url in lib.rs when bumping this
version = "0.6.0"
description = """
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
associated AlgorithmIdentifiers (i.e. OIDs)
Expand Down
3 changes: 1 addition & 2 deletions spki/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/spki/0.6.0-pre.1"
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down
2 changes: 1 addition & 1 deletion x509-cert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.56"
const-oid = { version = "0.9", features = ["db"], path = "../const-oid" }
der = { version = "0.6", features = ["derive", "alloc", "flagset"], path = "../der" }
flagset = { version = "0.4.3" }
spki = { version = "=0.6.0-pre.3", path = "../spki" }
spki = { version = "0.6", path = "../spki" }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion x509-ocsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version = "1.57"
der = { version = "0.6", features = ["oid", "derive", "alloc"], path = "../der" }
x509-cert = { version = "0.0.2", path = "../x509-cert" }
const-oid = { version = "0.9", path = "../const-oid" }
spki = { version = "=0.6.0-pre.3", path = "../spki" }
spki = { version = "0.6", path = "../spki" }

[dev-dependencies]
hex-literal = "0.3"
Expand Down

0 comments on commit 5eee0cd

Please sign in to comment.