From 62fbd6ab63976e3a99f26b10da4e1dc91863f62d Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Tue, 4 Jun 2019 15:27:12 -0700 Subject: [PATCH] Update version to 1.2.0 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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"