diff --git a/CHANGELOG.md b/CHANGELOG.md index 317be17..fd6b29c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,14 @@ Entries are listed in reverse chronological order. -## 1.1.0-pre.0 +## 1.1.0 -* Restructures the source tree into `serial` and `vector` backends. -* Adds a new IFMA backend which sets speed records. * Adds support for precomputation for multiscalar multiplication. +* Restructures the internal source tree into `serial` and `vector` backends (no change to external API). +* Adds a new IFMA backend which sets speed records. +* The `avx2_backend` feature is now an alias for the `simd_backend` feature, which autoselects an appropriate vector backend (currently AVX2 or IFMA). * Replaces the `rand` dependency with `rand_core`. -* Generalizes trait bounds on - - `RistrettoPoint::random()` - - `Scalar::random()` - to allow owned and borrowed RNGs and to allow `RngCore` instead of - `Rng`. +* Generalizes trait bounds on `RistrettoPoint::random()` and `Scalar::random()` to allow owned and borrowed RNGs and to allow `RngCore` instead of `Rng`. ## 1.0.3 diff --git a/Cargo.toml b/Cargo.toml index ed0cbb0..1a16652 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "1.1.0-pre.0" +version = "1.1.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" @@ -10,7 +10,7 @@ homepage = "https://dalek.rs/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek" categories = ["cryptography", "no-std"] keywords = ["cryptography", "ristretto", "curve25519", "ECC"] -description = "A pure-Rust implementation of group operations on Ristretto and Curve25519" +description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519" exclude = [ "**/.gitignore", ".gitignore",