From 11f4c765c6667a22d7226080aa0658689b99a874 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Thu, 16 Nov 2017 00:47:01 +0000 Subject: [PATCH 1/2] Add a README section on contributing. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 77420cd..b0ba5d2 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,11 @@ We intend to stabilise the following before curve25519-dalek-1.0.0: * Implement hashing to a point on the curve (Elligator). * Finish Ristretto (Decaf for curve25519) implementation. + +## Contributing + +Please see +[CONTRIBUTING.md](https://github.com/isislovecruft/curve25519-dalek/blob/master/CONTRIBUTING.md). + +Patches and pull requests should be make against the `develop` +branch, **not** `master`. From a03d5f2d58caa072f9ca4a38c1ba7a965bf4c0c6 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Thu, 16 Nov 2017 00:47:17 +0000 Subject: [PATCH 2/2] Bump curve25519-dalek version to 0.13.0 --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0a23de5..d634479 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.12.1" +version = "0.13.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" diff --git a/README.md b/README.md index b0ba5d2..0e27d0d 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Extensive documentation is available [here](https://docs.rs/curve25519-dalek). To install, add the following to the dependencies section of your project's `Cargo.toml`: - curve25519-dalek = "^0.12" + curve25519-dalek = "^0.13" Then, in your library or executable source, add: