Bump version to 2.1.0

This commit is contained in:
Henry de Valence 2020-05-29 12:39:39 -07:00
parent f04b83055c
commit 3fc47ef867
3 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,10 @@
Entries are listed in reverse chronological order.
## 2.1.0
* Make `Scalar::from_bits` a `const fn`, allowing its use in `const` contexts.
## 2.0.0
* Fix a data modeling error in the `serde` feature pointed out by Trevor Perrin

View file

@ -1,6 +1,10 @@
[package]
name = "curve25519-dalek"
version = "2.0.0"
# Before incrementing:
# - update CHANGELOG
# - update html_root_url
# - update README if required by semver
version = "2.1.0"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"

View file

@ -22,6 +22,7 @@
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/2.1.0")]
//! Note that docs will only build on nightly Rust until
//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).