Update CHANGELOG and bump version to 3.2.

This commit is contained in:
Isis Lovecruft 2021-07-13 05:28:35 +00:00
parent b61831b7cf
commit 1ee5c4defb
No known key found for this signature in database
GPG key ID: AB41313533E8E812
3 changed files with 8 additions and 2 deletions

View file

@ -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.

View file

@ -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"

View file

@ -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).