Skip to content

Commit 8526cc6

Browse files
authored
pem-rfc7468 v1.0.0 (#2096)
1 parent 02fdf7d commit 8526cc6

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
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.

cms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ zeroize = { version = "1.8.1", optional = true }
3939
aes = "0.9.0-rc.2"
4040
getrandom = "0.3"
4141
hex-literal = "1"
42-
pem-rfc7468 = "1.0.0-rc.1"
42+
pem-rfc7468 = "1"
4343
pkcs5 = "0.8.0-rc.9"
4444
pbkdf2 = "0.13.0-rc.2"
4545
rand = "0.10.0-rc.1"

der/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bytes = { version = "1", optional = true, default-features = false }
2222
const-oid = { version = "0.10", optional = true }
2323
der_derive = { version = "0.8.0-rc.6", optional = true }
2424
flagset = { version = "0.4.7", optional = true }
25-
pem-rfc7468 = { version = "1.0.0-rc.3", optional = true, features = ["alloc"] }
25+
pem-rfc7468 = { version = "1", optional = true, features = ["alloc"] }
2626
time = { version = "0.3.4", optional = true, default-features = false }
2727
zeroize = { version = "1.8", optional = true, default-features = false }
2828
heapless = { version = "0.8", optional = true, default-features = false }

pem-rfc7468/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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+
## 1.0.0 (2025-11-08)
8+
### Added
9+
- `detect_base64_line_width` and `new_detect_wrap` ([#1464])
10+
11+
### Changed
12+
- Use `core::error::Error` ([#1571])
13+
- Upgrade to Rust 2024 edition; MSRV 1.85 ([#1670])
14+
15+
[#1464]: https://github.com/RustCrypto/formats/pull/1464
16+
[#1571]: https://github.com/RustCrypto/formats/pull/1571
17+
[#1670]: https://github.com/RustCrypto/formats/pull/1670
18+
719
## 0.7.0 (2023-02-26)
820
### Changed
921
- MSRV 1.60 ([#802])

pem-rfc7468/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pem-rfc7468"
3-
version = "1.0.0-rc.3"
3+
version = "1.0.0"
44
description = """
55
PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a
66
strict subset of the original Privacy-Enhanced Mail encoding intended

0 commit comments

Comments
 (0)