Skip to content

Commit dd343fb

Browse files
authored
ecdsa v0.8.4 (#182)
1 parent 96ffe73 commit dd343fb

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecdsa/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.8.4 (2020-10-08)
8+
### Fixed
9+
- Work around `nightly-2020-10-06` breakage ([#180])
10+
11+
[#180]: https://github.com/RustCrypto/signatures/pull/180
12+
713
## 0.8.3 (2020-09-28)
814
### Fixed
915
- 32-bit builds for the `dev` feature ([#177])

ecdsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ecdsa"
3-
version = "0.8.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.8.4" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Signature and elliptic curve types providing interoperable support for the
66
Elliptic Curve Digital Signature Algorithm (ECDSA)

ecdsa/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#![warn(missing_docs, rust_2018_idioms)]
2929
#![doc(
3030
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png",
31-
html_root_url = "https://docs.rs/ecdsa/0.8.3"
31+
html_root_url = "https://docs.rs/ecdsa/0.8.4"
3232
)]
3333

3434
#[cfg(feature = "alloc")]

0 commit comments

Comments
 (0)