diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 7bd3694f..d5af6088 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -10,4 +10,4 @@ categories = ["cryptography", "no-std"] keywords = ["crypto", "ecc", "ecdsa", "signature", "signing"] [dependencies] -signature = { version = "1.0.0-pre", path = "../signature-crate" } +signature = { version = "1.0.0-pre.0", path = "../signature-crate" } diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index 6669f243..1c409d21 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -12,7 +12,7 @@ categories = ["cryptography", "no-std"] keywords = ["crypto", "curve25519", "ecc", "signature", "signing"] [dependencies] -signature = { version = "1.0.0-pre", path = "../signature-crate", default-features = false } +signature = { version = "1.0.0-pre.0", path = "../signature-crate", default-features = false } [features] default = ["alloc"] diff --git a/signature-crate/CHANGES.md b/signature-crate/CHANGES.md index 5edf1e0a..f995f57b 100644 --- a/signature-crate/CHANGES.md +++ b/signature-crate/CHANGES.md @@ -4,6 +4,14 @@ 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). +## 1.0.0-pre.0 (2019-10-11) +### Changed +- Revert removal of DigestSignature ([#33]) +- 1.0 stabilization proposal ([#32]) + +[#33]: https://github.com/RustCrypto/signatures/pull/33 +[#32]: https://github.com/RustCrypto/signatures/pull/32 + ## 0.3.0 (2019-10-10) ### Changed - Simplify alloc gating; MSRV 1.36+ ([#28]) diff --git a/signature-crate/Cargo.toml b/signature-crate/Cargo.toml index 5bdb3b5e..e4c5587e 100644 --- a/signature-crate/Cargo.toml +++ b/signature-crate/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "signature" description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)" -version = "1.0.0-pre" # Also update html_root_url in lib.rs when bumping this +version = "1.0.0-pre.0" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/signature" @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] [dependencies] digest = { version = "0.8", optional = true, default-features = false } -signature_derive = { version = "0.3", optional = true, path = "signature_derive" } +signature_derive = { version = "1.0.0-pre.0", optional = true, path = "signature_derive" } [dev-dependencies] hex-literal = "0.2" diff --git a/signature-crate/signature_derive/Cargo.toml b/signature-crate/signature_derive/Cargo.toml index ee9958ab..5b006b1f 100644 --- a/signature-crate/signature_derive/Cargo.toml +++ b/signature-crate/signature_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "signature_derive" -version = "0.3.0" +version = "1.0.0-pre.0" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "Custom derive support for the 'signature' crate" diff --git a/signature-crate/src/lib.rs b/signature-crate/src/lib.rs index 4c1dc197..f7503ffe 100644 --- a/signature-crate/src/lib.rs +++ b/signature-crate/src/lib.rs @@ -21,7 +21,7 @@ #![no_std] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] -#![doc(html_root_url = "https://docs.rs/signature/0.3.0")] +#![doc(html_root_url = "https://docs.rs/signature/1.0.0-pre.0")] #[cfg(feature = "alloc")] extern crate alloc;