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