mirror of
https://github.com/saymrwulf/betrusted-curve25519-dalek-source.git
synced 2026-09-04 20:24:07 +00:00
Bump version to 2.1.0
This commit is contained in:
parent
f04b83055c
commit
3fc47ef867
3 changed files with 10 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Reference in a new issue