From 6e29d0be9da5e3536c4d28623eb4f6de22fe98bf Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 3 May 2023 12:51:49 -0700 Subject: [PATCH] x509-cert: v0.2.2 Added - Certificate builder ([#764]) - Support for `RandomizedSigner` in builder ([#1007]) - Provide parsing profiles ([#987]) - Support for `Time::INFINITY` ([#1024]) - Conversion from `std::net::IpAddr` ([#1035]) - `CertReq` builder ([#1034]) Changed - use `ErrorKind::Value` for overlength serial ([#988]) - Bump `hex-literal` to v0.4.1 ([#999]) - Builder updates ([#1001]) - better debug info when `zlint` isn't installed ([#1018]) - make SKI optional in leaf certificate ([#1028]) - bump rsa from 0.9.0-pre.2 to 0.9.0 ([#1033]) Fixed - fix `KeyUsage` bit tests ([#993]) - extraneous PhantomData in `TbsCertificate` ([#1017]) --- x509-cert/CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/x509-cert/CHANGELOG.md b/x509-cert/CHANGELOG.md index 51e2e9d14..aceb7719d 100644 --- a/x509-cert/CHANGELOG.md +++ b/x509-cert/CHANGELOG.md @@ -4,6 +4,44 @@ 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.2.2 (unreleased) + +### Added +- Certificate builder ([#764]) +- Support for `RandomizedSigner` in builder ([#1007]) +- Provide parsing profiles ([#987]) +- Support for `Time::INFINITY` ([#1024]) +- Conversion from `std::net::IpAddr` ([#1035]) +- `CertReq` builder ([#1034]) + +### Changed +- use `ErrorKind::Value` for overlength serial ([#988]) +- Bump `hex-literal` to v0.4.1 ([#999]) +- Builder updates ([#1001]) +- better debug info when `zlint` isn't installed ([#1018]) +- make SKI optional in leaf certificate ([#1028]) +- bump rsa from 0.9.0-pre.2 to 0.9.0 ([#1033]) + +### Fixed +- fix `KeyUsage` bit tests ([#993]) +- extraneous PhantomData in `TbsCertificate` ([#1017]) + +[#764]: https://github.com/RustCrypto/formats/pull/764 +[#987]: https://github.com/RustCrypto/formats/pull/987 +[#988]: https://github.com/RustCrypto/formats/pull/988 +[#993]: https://github.com/RustCrypto/formats/pull/993 +[#999]: https://github.com/RustCrypto/formats/pull/999 +[#1001]: https://github.com/RustCrypto/formats/pull/1001 +[#1007]: https://github.com/RustCrypto/formats/pull/1007 +[#1017]: https://github.com/RustCrypto/formats/pull/1017 +[#1018]: https://github.com/RustCrypto/formats/pull/1018 +[#1024]: https://github.com/RustCrypto/formats/pull/1024 +[#1028]: https://github.com/RustCrypto/formats/pull/1028 +[#1033]: https://github.com/RustCrypto/formats/pull/1033 +[#1034]: https://github.com/RustCrypto/formats/pull/1034 +[#1035]: https://github.com/RustCrypto/formats/pull/1035 + + ## 0.2.1 (2023-03-26) ### Added - `FromStr` impls for `RdnSequence` (`Name`), `RelativeDistinguishedName`, and