Skip to content

Commit e4b698c

Browse files
authored
pkcs8 v0.5.5 (#336)
1 parent 1c034aa commit e4b698c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkcs8/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.5 (2021-03-17)
8+
### Changed
9+
- Bump `base64ct` dependency to v1.0 ([#335])
10+
11+
[#335]: https://github.com/RustCrypto/utils/pull/335
12+
713
## 0.5.4 (2021-02-24)
814
### Added
915
- Encryption helper methods for `FromPrivateKey`/`ToPrivateKey` ([#308])

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.5.4" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.5.5" # 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#![doc(
6363
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
6464
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
65-
html_root_url = "https://docs.rs/pkcs8/0.5.4"
65+
html_root_url = "https://docs.rs/pkcs8/0.5.5"
6666
)]
6767
#![forbid(unsafe_code)]
6868
#![warn(missing_docs, rust_2018_idioms)]

0 commit comments

Comments
 (0)