From 35efae160a4976dd0c38e6f82fb4c326c56e6a22 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 27 Sep 2020 09:43:20 -0700 Subject: [PATCH] ecdsa v0.8.2 --- Cargo.lock | 2 +- ecdsa/CHANGELOG.md | 7 +++++++ ecdsa/Cargo.toml | 2 +- ecdsa/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52ab8256..ed1c3b98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.8.1" +version = "0.8.2" dependencies = [ "elliptic-curve", "hex-literal", diff --git a/ecdsa/CHANGELOG.md b/ecdsa/CHANGELOG.md index cca826db..d271ec66 100644 --- a/ecdsa/CHANGELOG.md +++ b/ecdsa/CHANGELOG.md @@ -4,6 +4,13 @@ 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.8.2 (2020-09-27) +### Added +- `RecoverableSignPrimitive` ([#174], [#175]) + +[#174]: https://github.com/RustCrypto/signatures/pull/174 +[#175]: https://github.com/RustCrypto/signatures/pull/175 + ## 0.8.1 (2020-09-23) ### Added - Conditional `Copy` impl on `VerifyKey` ([#171]) diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index e5582867..4cdc3df9 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.2" # Also update html_root_url in lib.rs when bumping this description = """ Signature and elliptic curve types providing interoperable support for the Elliptic Curve Digital Signature Algorithm (ECDSA) diff --git a/ecdsa/src/lib.rs b/ecdsa/src/lib.rs index 59fedca6..e65245fd 100644 --- a/ecdsa/src/lib.rs +++ b/ecdsa/src/lib.rs @@ -28,7 +28,7 @@ #![warn(missing_docs, rust_2018_idioms)] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png", - html_root_url = "https://docs.rs/ecdsa/0.8.1" + html_root_url = "https://docs.rs/ecdsa/0.8.2" )] #[cfg(feature = "alloc")]