Skip to content

Commit

Permalink
ecdsa v0.14.0-pre.1 (RustCrypto#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jan 19, 2022
1 parent 090a85a commit be78a5c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
9 changes: 5 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ members = [
"ed25519",
"rfc6979"
]

[patch.crates-io]
elliptic-curve = { git = "https://github.com/RustCrypto/traits" }
4 changes: 2 additions & 2 deletions ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdsa"
version = "0.14.0-pre.0" # Also update html_root_url in lib.rs when bumping this
version = "0.14.0-pre.1" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard)
Expand All @@ -23,7 +23,7 @@ der = { version = "0.5", optional = true }
rfc6979 = { version = "=0.2.0-pre.0", optional = true, path = "../rfc6979" }

[dev-dependencies]
elliptic-curve = { version = "0.12.0-pre.0", default-features = false, features = ["dev"] }
elliptic-curve = { version = "0.12.0-pre.1", default-features = false, features = ["dev"] }
hex-literal = "0.3"
sha2 = { version = "0.10", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion ecdsa/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/ecdsa/0.14.0-pre.0"
html_root_url = "https://docs.rs/ecdsa/0.14.0-pre.1"
)]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit be78a5c

Please sign in to comment.