From 411b799501c059983c16ea3770050fe68129faba Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Mon, 24 Apr 2023 15:29:38 -0700 Subject: [PATCH] der: v0.7.5 Added - adds support for `DateTime::INFINITY` (#1026) --- Cargo.lock | 2 +- der/CHANGELOG.md | 6 ++++++ der/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ef8d412b..2dc6e8e24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -404,7 +404,7 @@ dependencies = [ [[package]] name = "der" -version = "0.7.4" +version = "0.7.5" dependencies = [ "arbitrary", "const-oid 0.9.2", diff --git a/der/CHANGELOG.md b/der/CHANGELOG.md index ba3e8b8fd..2b99c219d 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.5 (2023-04-24) +### Added +- adds support for `DateTime::INFINITY` ([#1026]) + +[#1026]: https://github.com/RustCrypto/formats/pull/1026 + ## 0.7.4 (2023-04-19) ### Added - `Decode` and `Encode` impls for `PhantomData` ([#1009]) diff --git a/der/Cargo.toml b/der/Cargo.toml index 27f14a081..dab3b0d95 100644 --- a/der/Cargo.toml +++ b/der/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "der" -version = "0.7.4" +version = "0.7.5" 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