From b5ce35b51576bdc4ed92bd8dd805e5012d9d93d5 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 8 Mar 2020 15:29:20 -0700 Subject: [PATCH] ecdsa v0.5.0-pre --- ecdsa/Cargo.toml | 2 +- ecdsa/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 55d520d0..2ecd5ed4 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.4.0" # Also update html_root_url in lib.rs when bumping this +version = "0.5.0-pre" # 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 b54925f1..5ee8233d 100644 --- a/ecdsa/src/lib.rs +++ b/ecdsa/src/lib.rs @@ -36,7 +36,7 @@ #![warn(missing_docs, rust_2018_idioms, intra_doc_link_resolution_failure)] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png", - html_root_url = "https://docs.rs/ecdsa/0.4.0" + html_root_url = "https://docs.rs/ecdsa/0.5.0-pre" )] // Re-export the `generic-array` crate