From 0de90f19722429c6266871a6f57cf3dda9e8f8a3 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 16 Nov 2023 08:00:40 -0700 Subject: [PATCH] dsa v0.6.2 --- Cargo.lock | 2 +- dsa/CHANGELOG.md | 6 ++++++ dsa/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e0f09e77..2d74604b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "dsa" -version = "0.6.1" +version = "0.6.2" dependencies = [ "digest", "num-bigint-dig", diff --git a/dsa/CHANGELOG.md b/dsa/CHANGELOG.md index 829e0b09..ae9c27bd 100644 --- a/dsa/CHANGELOG.md +++ b/dsa/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.6.2 (2023-11-16) +### Changed +- Loosen `signature` bound to `2.0, <2.3` ([#756]) + +[#756]: https://github.com/RustCrypto/signatures/pull/756 + ## 0.6.1 (2023-04-04) ### Changed - Loosen `signature` bound to `2.0, <2.2` ([#697]) diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index b69696c2..672ab122 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dsa" -version = "0.6.1" +version = "0.6.2" description = """ Pure Rust implementation of the Digital Signature Algorithm (DSA) as specified in FIPS 186-4 (Digital Signature Standard), providing RFC6979 deterministic