From 99d4e33cfa4b61bfb15825748e3d27f3f72acfb8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 10 Aug 2019 12:00:22 -0700 Subject: [PATCH] ed25519 v0.1.0 --- ed25519/CHANGES.md | 5 +++++ ed25519/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 ed25519/CHANGES.md diff --git a/ed25519/CHANGES.md b/ed25519/CHANGES.md new file mode 100644 index 0000000..a7314e1 --- /dev/null +++ b/ed25519/CHANGES.md @@ -0,0 +1,5 @@ +## [0.1.0] (2019-08-10) + +- Initial release + +[0.1.0]: https://github.com/RustCrypto/signatures/pull/24 diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index a88b92e..3e786ee 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ed25519" -version = "0.0.0" +version = "0.1.0" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)"