From 28b7ed5709a4b127f02ea08d21a7cc06f563ee8a Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Fri, 22 Jun 2018 12:24:20 -0700 Subject: [PATCH] Change version to 0.18.0 (since feature flags changed) --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1103faf..3978ee5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.17.0" +version = "0.18.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" diff --git a/README.md b/README.md index 0943fd7..ddf4283 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ make doc-internal To import `curve25519-dalek`, add the following to the dependencies section of your project's `Cargo.toml`: ```toml -curve25519-dalek = "^0.17" +curve25519-dalek = "^0.18" ``` Then import the crate as: ```rust,no_run