diff --git a/Cargo.lock b/Cargo.lock index 87396a5b..a164dad5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.8.3" +version = "0.8.4" dependencies = [ "elliptic-curve", "hex-literal", diff --git a/ecdsa/CHANGELOG.md b/ecdsa/CHANGELOG.md index 97a39c9e..af20a544 100644 --- a/ecdsa/CHANGELOG.md +++ b/ecdsa/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.8.4 (2020-10-08) +### Fixed +- Work around `nightly-2020-10-06` breakage ([#180]) + +[#180]: https://github.com/RustCrypto/signatures/pull/180 + ## 0.8.3 (2020-09-28) ### Fixed - 32-bit builds for the `dev` feature ([#177]) diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index b8a376a2..121e8f1e 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.8.3" # Also update html_root_url in lib.rs when bumping this +version = "0.8.4" # 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 bd9342bc..96ec8e4d 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.3" + html_root_url = "https://docs.rs/ecdsa/0.8.4" )] #[cfg(feature = "alloc")]