From a3368f60653c3ac01c73948555b260fcc5ee3b67 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Fri, 18 Apr 2025 14:21:17 +0000 Subject: [PATCH] der: v0.7.10 Fixed: - append in `Encode::encode_to_vec` (backport [#1760]) [#1760]: https://github.com/RustCrypto/formats/pull/1760 --- der/CHANGELOG.md | 6 ++++++ der/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/der/CHANGELOG.md b/der/CHANGELOG.md index d82e7235d..606b8be38 100644 --- a/der/CHANGELOG.md +++ b/der/CHANGELOG.md @@ -4,6 +4,12 @@ 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.7.10 (2024-04-18) +### Fixed +- append in `Encode::encode_to_vec` (backport [#1760]) + +[#1760]: https://github.com/RustCrypto/formats/pull/1760 + ## 0.7.9 (2024-04-01) ### Changed - ignore RUSTSEC-2023-0071 (backport [#1276]) diff --git a/der/Cargo.toml b/der/Cargo.toml index 4233b40a3..d37170aef 100644 --- a/der/Cargo.toml +++ b/der/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "der" -version = "0.7.9" +version = "0.7.10" description = """ Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with