From c1d7e242821482096123486b7667c4ddab148700 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Fri, 14 Jul 2023 20:09:15 +0000 Subject: [PATCH] cms v0.2.2 Added - `SignedData` builder (#1051) Changed - Deprecate `pkcs7` in favor of `cms` (#1062) - der: add `SetOf(Vec)::insert(_ordered)`; deprecate `add` (#1067) - Re-enable all minimal-versions checks (#1071) Fixed - Don't insert signing time attribute by default (#1148) - Fixed encoding of `SubjectKeyIdentifier` (#1152) --- Cargo.lock | 2 +- cms/CHANGELOG.md | 20 ++++++++++++++++++++ cms/Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8da8b269..109bc51b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "cms" -version = "0.2.1" +version = "0.2.2" dependencies = [ "const-oid 0.9.3", "der", diff --git a/cms/CHANGELOG.md b/cms/CHANGELOG.md index b448b2065..41b544083 100644 --- a/cms/CHANGELOG.md +++ b/cms/CHANGELOG.md @@ -4,6 +4,26 @@ 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 (2023-07-14) +### Added +- `SignedData` builder ([#1051]) + +### Changed +- Deprecate `pkcs7` in favor of `cms` ([#1062]) +- der: add `SetOf(Vec)::insert(_ordered)`; deprecate `add` ([#1067]) +- Re-enable all minimal-versions checks ([#1071]) + +### Fixed +- Don't insert signing time attribute by default ([#1148]) +- Fixed encoding of `SubjectKeyIdentifier` ([#1152]) + +[#1051]: https://github.com/RustCrypto/formats/pull/1051 +[#1062]: https://github.com/RustCrypto/formats/pull/1062 +[#1067]: https://github.com/RustCrypto/formats/pull/1067 +[#1071]: https://github.com/RustCrypto/formats/pull/1071 +[#1148]: https://github.com/RustCrypto/formats/pull/1148 +[#1152]: https://github.com/RustCrypto/formats/pull/1152 + ## 0.2.1 (2023-05-04) ### Added - Convenience functions for converting cert(s) to certs-only `SignedData` message ([#1032]) diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 3c89de56d..72a57615e 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cms" -version = "0.2.1" +version = "0.2.2" description = """ Pure Rust implementation of the Cryptographic Message Syntax (CMS) as described in RFC 5652 and RFC 3274. """