Bump curve25519-dalek version to 3.0.2.

This commit is contained in:
Isis Lovecruft 2021-01-08 03:32:42 +00:00
parent 77ec974212
commit 55e0db7cf6
No known key found for this signature in database
GPG key ID: AB41313533E8E812
3 changed files with 24 additions and 2 deletions

View file

@ -5,6 +5,10 @@ major series.
## 3.x series ## 3.x series
### 3.0.2
* Fixes to make using alloc+no_std possible for stable Rust.
### 3.0.1 ### 3.0.1
* Update the optional `packed-simd` dependency to rely on a newer, * Update the optional `packed-simd` dependency to rely on a newer,
@ -18,6 +22,15 @@ major series.
## 2.x series ## 2.x series
### 2.1.2
* Fixes to make using alloc+no_std possible for stable Rust.
### 2.1.1
* Update the optional `packed-simd` dependency to rely on a newer,
maintained version of the `packed-simd-2` crate.
### 2.1.0 ### 2.1.0
* Make `Scalar::from_bits` a `const fn`, allowing its use in `const` contexts. * Make `Scalar::from_bits` a `const fn`, allowing its use in `const` contexts.
@ -43,6 +56,15 @@ besides the `rand_core` version bump, there are no other user-visible changes.
## 1.x series ## 1.x series
### 1.2.6
* Fixes to make using alloc+no_std possible for stable Rust.
### 1.2.5
* Update the optional `packed-simd` dependency to rely on a newer,
maintained version of the `packed-simd-2` crate.
### 1.2.4 ### 1.2.4
* Specify a semver bound for `clear_on_drop` rather than an exact version, * Specify a semver bound for `clear_on_drop` rather than an exact version,

View file

@ -4,7 +4,7 @@ name = "curve25519-dalek"
# - update CHANGELOG # - update CHANGELOG
# - update html_root_url # - update html_root_url
# - update README if required by semver # - update README if required by semver
version = "3.0.1" version = "3.0.2"
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"

View file

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