From 30179f6c1828e94e8a54b9ce87778aa5bc2dff1e Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 26 Jan 2024 16:01:40 -0500 Subject: [PATCH] docs: update CHANGELOG for 0.12.1 (#220) Forward-porting the changelog update from https://github.com/rustls/rcgen/pull/219 to `main`. --- 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).