diff --git a/CHANGELOG.md b/CHANGELOG.md index c2fa0ad..fc7a3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ Entries are listed in reverse chronological order. +## 1.2.0 + +* New multiscalar multiplication algorithm with better performance for + large problem sizes. The backend algorithm is selected + transparently using the size hints of the input iterators, so no + changes are required for client crates to start using it. +* Equality of Edwards points is now checked in projective coordinates. +* Serde can now be used with `no_std`. + ## 1.1.4 * Fix typos in documentation comments. diff --git a/Cargo.toml b/Cargo.toml index 162f430..b2026d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "1.1.4" +version = "1.2.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md"