From a467b313f0e6dc37c9316f85700daf6309e28a6c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 20 Jul 2023 20:15:00 -0600 Subject: [PATCH] ecdsa v0.16.8 (#733) --- Cargo.lock | 2 +- ecdsa/CHANGELOG.md | 11 ++++++++++- ecdsa/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be0c508d..e796005d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -180,7 +180,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.16.7" +version = "0.16.8" dependencies = [ "der", "digest", diff --git a/ecdsa/CHANGELOG.md b/ecdsa/CHANGELOG.md index 675eecc2..1790e5b5 100644 --- a/ecdsa/CHANGELOG.md +++ b/ecdsa/CHANGELOG.md @@ -4,8 +4,17 @@ 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.16.7 (2023-05-11) +## 0.16.8 (2023-07-20) +### Added +- `hazmat::{sign_prehashed, verify_prehashed}` ([#731]) + +### Changed +- Refactor `Signature` constructors and improve docs ([#730]) + +[#730]: https://github.com/RustCrypto/signatures/pull/730 +[#731]: https://github.com/RustCrypto/signatures/pull/731 +## 0.16.7 (2023-05-11) ### Added - RFC5480 citation for `der::Signature` ([#710]) - support for the `SignatureBitStringEncoding` trait ([#716]) diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index f74a1f6e..d78cc4e2 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.16.7" +version = "0.16.8" description = """ Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing