From c50876ba1ea31574f6ebe80c7c552710a4f49e1c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 27 Oct 2019 10:26:19 -0700 Subject: [PATCH] ed25519 v1.0.0-pre.1 --- ed25519/CHANGES.md | 12 ++++++++++++ ed25519/Cargo.toml | 2 +- ed25519/src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ed25519/CHANGES.md b/ed25519/CHANGES.md index c6542f5e..b4b35e37 100644 --- a/ed25519/CHANGES.md +++ b/ed25519/CHANGES.md @@ -4,6 +4,18 @@ 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.1 (2019-10-11) +### Added +- Optional `serde` support ([#40]) +- Add `TryFrom` impl for `Signature` ([#39]) + +### Changed +- Upgrade to `signature` 1.0.0-pre.1 ([#41]) + +[#41]: https://github.com/RustCrypto/signatures/pull/41 +[#40]: https://github.com/RustCrypto/signatures/pull/40 +[#39]: https://github.com/RustCrypto/signatures/pull/39 + ## 1.0.0-pre.0 (2019-10-11) ### Changed - Upgrade to `signature` 1.0.0-pre.0 ([#34]) diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index 82615835..178db987 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ed25519" -version = "1.0.0-pre.0" +version = "1.0.0-pre.1" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)" diff --git a/ed25519/src/lib.rs b/ed25519/src/lib.rs index 221a6362..2b36a172 100644 --- a/ed25519/src/lib.rs +++ b/ed25519/src/lib.rs @@ -18,7 +18,7 @@ #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png", - html_root_url = "https://docs.rs/ed25519/1.0.0-pre.0" + html_root_url = "https://docs.rs/ed25519/1.0.0-pre.1" )] #[cfg(feature = "serde")]