diff --git a/Cargo.toml b/Cargo.toml index 4be6b1d..c5b6519 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "1.0.0-pre.1" +version = "1.0.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" diff --git a/README.md b/README.md index 52a5481..5167d9e 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ make doc-internal To import `curve25519-dalek`, add the following to the dependencies section of your project's `Cargo.toml`: ```toml -curve25519-dalek = "1.0.0-pre.0" +curve25519-dalek = "1" ``` Then import the crate as: ```rust,no_run