Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 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 der/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.57"
const-oid = { version = "0.9", optional = true, path = "../const-oid" }
der_derive = { version = "=0.6.0-pre.3", optional = true, path = "derive" }
flagset = { version = "0.4.3", optional = true }
pem-rfc7468 = { version = "=0.6.0-pre", optional = true, path = "../pem-rfc7468" }
pem-rfc7468 = { version = "0.6", optional = true, path = "../pem-rfc7468" }
time = { version = "0.3.4", optional = true, default-features = false }
zeroize = { version = "1.5", optional = true, default-features = false, features = ["alloc"] }

Expand Down
11 changes: 11 additions & 0 deletions pem-rfc7468/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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-04-26)
### Added
- `encapsulated_len_wrapped` ([#619])

### Changed
- `encapsulated_len` now accepts the length of the raw input bytes prior to
Base64 encoding, and computes the length of the full PEM encoded document
including newlines when the resulting Base64 is linewrapped ([#619])

[#619]: https://github.com/RustCrypto/formats/pull/619

## 0.5.1 (2022-03-30)
### Changed
- Rename `PemLabel::TYPE_LABEL` => `::PEM_LABEL` ([#568])
Expand Down
2 changes: 1 addition & 1 deletion pem-rfc7468/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pem-rfc7468"
version = "0.6.0-pre"
version = "0.6.0"
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 ssh-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.57"

[dependencies]
base64ct = { version = "1.4", path = "../base64ct" }
pem-rfc7468 = { version = "=0.6.0-pre", path = "../pem-rfc7468" }
pem-rfc7468 = { version = "0.6", path = "../pem-rfc7468" }
zeroize = { version = "1", default-features = false }

# optional dependencies
Expand Down