Skip to content

Commit 36db1eb

Browse files
authored
spki v0.7.1 (#981)
1 parent 672ab4f commit 36db1eb

File tree

3 files changed

+18
-3
lines changed

3 files changed

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

spki/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.7.1 (2023-04-04)
8+
### Added
9+
- `AssociatedAlgorithmIdentifier` trait ([#962], [#966])
10+
- `DynAssociatedAlgorithmIdentifier` trait ([#962])
11+
- `SignatureAlgorithmIdentifier` trait ([#967])
12+
- `DynSignatureAlgorithmIdentifier` trait ([#967])
13+
14+
### Changed
15+
- Bump `der` dependency to v0.7.2 ([#979])
16+
17+
[#962]: https://github.com/RustCrypto/formats/pull/962
18+
[#966]: https://github.com/RustCrypto/formats/pull/966
19+
[#967]: https://github.com/RustCrypto/formats/pull/967
20+
[#979]: https://github.com/RustCrypto/formats/pull/979
21+
722
## 0.7.0 (2023-02-26)
823
### Changed
924
- Make `AlgorithmIdentifier` generic around `Params` ([#769])

spki/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spki"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = """
55
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
66
associated AlgorithmIdentifiers (i.e. OIDs)
@@ -15,7 +15,7 @@ edition = "2021"
1515
rust-version = "1.65"
1616

1717
[dependencies]
18-
der = { version = "0.7", features = ["oid"], path = "../der" }
18+
der = { version = "0.7.2", features = ["oid"], path = "../der" }
1919

2020
# Optional dependencies
2121
arbitrary = { version = "1.2", features = ["derive"], optional = true }

0 commit comments

Comments
 (0)