Skip to content

Commit 4ff3df4

Browse files
authored
pkcs8 v0.5.0 (#269)
1 parent 31e0dd8 commit 4ff3df4

File tree

4 files changed

+14
-3
lines changed

4 files changed

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

pkcs8/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.5.0 (2021-02-16)
8+
### Added
9+
- Initial `EncryptedPrivateKeyInfo` support ([#262])
10+
11+
### Changed
12+
- Extract SPKI-related types into the `spki` crate ([#261], [#268])
13+
14+
[#261]: https://github.com/RustCrypto/utils/pull/261
15+
[#262]: https://github.com/RustCrypto/utils/pull/262
16+
[#268]: https://github.com/RustCrypto/utils/pull/268
17+
718
## 0.4.1 (2021-02-01)
819
### Changed
920
- Bump `basec4ct` dependency to v0.2 ([#238], [#243])

pkcs8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.5.0-pre" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.5.0" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208)

pkcs8/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#![doc(
5151
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
5252
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
53-
html_root_url = "https://docs.rs/pkcs8/0.5.0-pre"
53+
html_root_url = "https://docs.rs/pkcs8/0.5.0"
5454
)]
5555
#![forbid(unsafe_code)]
5656
#![warn(missing_docs, rust_2018_idioms)]

0 commit comments

Comments
 (0)