From d889ac8a15c9b802f846b49f7f243e0a4fc5ffec Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Fri, 22 Nov 2019 13:12:14 -0800 Subject: [PATCH] Finalize 2.0.0 This collapses the CHANGELOG entries for the intermediate alpha releases (to be yanked) into a list of changes from 1.x to 2.0.0. --- CHANGELOG.md | 18 ++++++------------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2652228e9..a46b2ff18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,18 +2,7 @@ Entries are listed in reverse chronological order. -## 2.0.0-alpha.2 - -* Require `subtle = ^2.2.1` and remove the note advising nightly Rust, which is - no longer required as of that version of `subtle`. See the `subtle` - changelog for more details. - -## 2.0.0-alpha.1 - -* Update `README.md` for `2.x` series. -* Fix a `Zeroize`-related build issue in the AVX2 backend. - -## 2.0.0-alpha.0 +## 2.0.0 * Fix a data modeling error in the `serde` feature pointed out by Trevor Perrin which caused points and scalars to be serialized with length fields rather @@ -21,6 +10,11 @@ Entries are listed in reverse chronological order. compatibility with `serde-json` and ensures that the `serde-bincode` encoding matches the conventional encoding for X/Ed25519. * Update `rand_core` to `0.5`, allowing use with new `rand` versions. +* Switch from `clear_on_drop` to `zeroize` (by Tony Arcieri). +* Require `subtle = ^2.2.1` and remove the note advising nightly Rust, which is + no longer required as of that version of `subtle`. See the `subtle` + changelog for more details. +* Update `README.md` for `2.x` series. * Remove the `build.rs` hack which loaded the entire crate into its own `build.rs` to generate constants, and keep the constants in the source code. diff --git a/Cargo.toml b/Cargo.toml index a20a43c52..87d35e8ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "2.0.0-alpha.2" +version = "2.0.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md"