Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pem-rfc7468 v0.3.0 #217

Merged
merged 1 commit into from Nov 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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 der/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.56"
const-oid = { version = "0.7", optional = true, path = "../const-oid" }
crypto-bigint = { version = "0.3", optional = true, default-features = false, features = ["generic-array"] }
der_derive = { version = "=0.5.0-pre.1", optional = true, path = "derive" }
pem-rfc7468 = { version = "=0.3.0-pre", optional = true, path = "../pem-rfc7468" }
pem-rfc7468 = { version = "0.3", optional = true, path = "../pem-rfc7468" }
time = { version = "0.3", optional = true, default-features = false }

[dev-dependencies]
Expand Down
12 changes: 12 additions & 0 deletions pem-rfc7468/CHANGELOG.md
Expand Up @@ -4,6 +4,18 @@ 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.3.0 (2021-11-14)
### Added
- `Decoder` struct ([#177])

### Changed
- Rust 2021 edition upgrade; MSRV 1.56 ([#136])
- Bump `base64ct` dependency to v1.2 ([#175])

[#136]: https://github.com/RustCrypto/formats/pull/136
[#175]: https://github.com/RustCrypto/formats/pull/175
[#177]: https://github.com/RustCrypto/formats/pull/177

## 0.2.4 (2021-11-07)
### Changed
- Restrict `base64ct` dependency to `<1.2` to prevent MSRV breakages
Expand Down
2 changes: 1 addition & 1 deletion pem-rfc7468/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pem-rfc7468"
version = "0.3.0-pre" # Also update html_root_url in lib.rs when bumping this
version = "0.3.0" # Also update html_root_url in lib.rs when bumping this
description = """
PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a
strict subset of the original Privacy-Enhanced Mail encoding intended
Expand Down
2 changes: 1 addition & 1 deletion pem-rfc7468/src/lib.rs
Expand Up @@ -45,7 +45,7 @@
#![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/pem-rfc7468/0.3.0-pre"
html_root_url = "https://docs.rs/pem-rfc7468/0.3.0"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down