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.
This commit is contained in:
Henry de Valence 2019-11-22 13:12:14 -08:00
parent db6a0b1187
commit d889ac8a15
2 changed files with 7 additions and 13 deletions

View file

@ -2,18 +2,7 @@
Entries are listed in reverse chronological order. Entries are listed in reverse chronological order.
## 2.0.0-alpha.2 ## 2.0.0
* 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
* Fix a data modeling error in the `serde` feature pointed out by Trevor Perrin * 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 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 compatibility with `serde-json` and ensures that the `serde-bincode` encoding
matches the conventional encoding for X/Ed25519. matches the conventional encoding for X/Ed25519.
* Update `rand_core` to `0.5`, allowing use with new `rand` versions. * 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 * 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. `build.rs` to generate constants, and keep the constants in the source code.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "2.0.0-alpha.2" version = "2.0.0"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>", authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"] "Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md" readme = "README.md"