From 077d4d33f33c3806c24509f403a76f8bdaf47942 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 25 Jan 2024 16:08:52 -0500 Subject: [PATCH 1/2] docs: update CHANGELOG for 0.12.1 --- rcgen/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/rcgen/CHANGELOG.md b/rcgen/CHANGELOG.md index 0b906d8b..560b3bca 100644 --- a/rcgen/CHANGELOG.md +++ b/rcgen/CHANGELOG.md @@ -1,6 +1,15 @@ # Changes +## Release 0.12.1 - January 25th, 2024 + +- RFC 5280 specifies that a serial number must not be larger than 20 octets in + length. Prior to this release an unintended interaction between rcgen and its + underlying DER encoding library could result in 21 octet serials. This has now + been fixed. +- A regression that caused build errors when the optional `pem` feature was + omitted has been fixed. + ## Release 0.12.0 - December 16, 2023 - Rename `RcgenError` to `Error`. Contributed by [thomaseizinger](https://github.com/thomaseizinger). From 9f7ef2943e22ca62cefa61da07fb1241b99e1c3f Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 25 Jan 2024 16:09:42 -0500 Subject: [PATCH 2/2] Cargo: version 0.12.0 -> 0.12.1 --- Cargo.lock | 2 +- rcgen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5223403d..115bc820 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.12.0" +version = "0.12.1" dependencies = [ "aws-lc-rs", "botan", diff --git a/rcgen/Cargo.toml b/rcgen/Cargo.toml index 955e545b..20170aca 100644 --- a/rcgen/Cargo.toml +++ b/rcgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rcgen" -version = "0.12.0" +version = "0.12.1" documentation = "https://docs.rs/rcgen" description.workspace = true repository.workspace = true