mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Update CHANGELOG and bump version to 3.2.
This commit is contained in:
parent
b61831b7cf
commit
1ee5c4defb
3 changed files with 8 additions and 2 deletions
|
|
@ -5,6 +5,12 @@ major series.
|
|||
|
||||
## 3.x series
|
||||
|
||||
### 3.2.0
|
||||
|
||||
* Add support for getting the identity element for the Montgomery
|
||||
form of curve25519, which is useful in certain protocols for
|
||||
checking contributory behaviour in derivation of shared secrets.
|
||||
|
||||
### 3.1.0
|
||||
|
||||
* Add support for the Elligator2 encoding for Edwards points.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ name = "curve25519-dalek"
|
|||
# - update CHANGELOG
|
||||
# - update html_root_url
|
||||
# - update README if required by semver
|
||||
version = "3.1.0"
|
||||
version = "3.2.0"
|
||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
"Henry de Valence <hdevalence@hdevalence.ca>"]
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -22,7 +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/3.1.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/3.2.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