mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-07 20:50:39 +00:00
chore: Release 2.0.0-rc.2 (#295)
Co-authored-by: Michael Rosenberg <michael@mrosenberg.pub>
This commit is contained in:
parent
7901b21e06
commit
5014c91270
3 changed files with 7 additions and 6 deletions
|
|
@ -15,10 +15,10 @@ Entries are listed in reverse chronological order per undeprecated major series.
|
||||||
* Bump MSRV from 1.41 to 1.60.0
|
* Bump MSRV from 1.41 to 1.60.0
|
||||||
* Bump Rust edition
|
* Bump Rust edition
|
||||||
* Bump `signature` dependency to 2.0
|
* Bump `signature` dependency to 2.0
|
||||||
* Make [curve25519-backend selection](https://github.com/dalek-cryptography/curve25519-dalek/#backends) more automatic
|
|
||||||
* Make `digest` an optional dependency
|
* Make `digest` an optional dependency
|
||||||
* Make `zeroize` an optional dependency
|
* Make `zeroize` an optional dependency
|
||||||
* Make `rand_core` an optional dependency
|
* Make `rand_core` an optional dependency
|
||||||
|
* Adopt [curve25519-backend selection](https://github.com/dalek-cryptography/curve25519-dalek/#backends) over features
|
||||||
* Make all batch verification deterministic remove `batch_deterministic` ([#256](https://github.com/dalek-cryptography/ed25519-dalek/pull/256))
|
* Make all batch verification deterministic remove `batch_deterministic` ([#256](https://github.com/dalek-cryptography/ed25519-dalek/pull/256))
|
||||||
* Remove `ExpandedSecretKey` API ((#205)[https://github.com/dalek-cryptography/ed25519-dalek/pull/205])
|
* Remove `ExpandedSecretKey` API ((#205)[https://github.com/dalek-cryptography/ed25519-dalek/pull/205])
|
||||||
* Rename `Keypair` → `SigningKey` and `PublicKey` → `VerifyingKey`
|
* Rename `Keypair` → `SigningKey` and `PublicKey` → `VerifyingKey`
|
||||||
|
|
@ -34,3 +34,4 @@ Entries are listed in reverse chronological order per undeprecated major series.
|
||||||
* Impl `Hash` for `VerifyingKey`
|
* Impl `Hash` for `VerifyingKey`
|
||||||
* Impl `Clone`, `Drop`, and `ZeroizeOnDrop` for `SigningKey`
|
* Impl `Clone`, `Drop`, and `ZeroizeOnDrop` for `SigningKey`
|
||||||
* Remove `rand` dependency
|
* Remove `rand` dependency
|
||||||
|
* Improve key deserialization diagnostics
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ed25519-dalek"
|
name = "ed25519-dalek"
|
||||||
version = "2.0.0-pre.0"
|
version = "2.0.0-rc.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
"isis lovecruft <isis@patternsinthevoid.net>",
|
"isis lovecruft <isis@patternsinthevoid.net>",
|
||||||
|
|
@ -25,7 +25,7 @@ rustdoc-args = [
|
||||||
features = ["batch", "pkcs8"]
|
features = ["batch", "pkcs8"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "=4.0.0-rc.1", default-features = false, features = ["digest"] }
|
curve25519-dalek = { version = "=4.0.0-rc.2", default-features = false, features = ["digest"] }
|
||||||
ed25519 = { version = ">=2.2, <2.3", default-features = false }
|
ed25519 = { version = ">=2.2, <2.3", default-features = false }
|
||||||
signature = { version = ">=2.0, <2.1", optional = true, default-features = false }
|
signature = { version = ">=2.0, <2.1", optional = true, default-features = false }
|
||||||
sha2 = { version = "0.10", default-features = false }
|
sha2 = { version = "0.10", default-features = false }
|
||||||
|
|
@ -37,7 +37,7 @@ serde = { version = "1.0", default-features = false, optional = true }
|
||||||
zeroize = { version = "1.5", default-features = false, optional = true }
|
zeroize = { version = "1.5", default-features = false, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
curve25519-dalek = { version = "=4.0.0-rc.1", default-features = false, features = ["digest", "rand_core"] }
|
curve25519-dalek = { version = "=4.0.0-rc.2", default-features = false, features = ["digest", "rand_core"] }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
bincode = "1.0"
|
bincode = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ ed25519-dalek = "1"
|
||||||
To use the latest prerelease (see changes [below](#breaking-changes-in-200)),
|
To use the latest prerelease (see changes [below](#breaking-changes-in-200)),
|
||||||
use the following line in your project's `Cargo.toml`:
|
use the following line in your project's `Cargo.toml`:
|
||||||
```toml
|
```toml
|
||||||
ed25519-dalek = "2.0.0-pre.0"
|
ed25519-dalek = "2.0.0-rc.2"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Feature Flags
|
# Feature Flags
|
||||||
|
|
@ -47,10 +47,10 @@ See [CHANGELOG.md](CHANGELOG.md) for a list of changes made in past version of t
|
||||||
* Bump MSRV from 1.41 to 1.60.0
|
* Bump MSRV from 1.41 to 1.60.0
|
||||||
* Bump Rust edition
|
* Bump Rust edition
|
||||||
* Bump `signature` dependency to 2.0
|
* Bump `signature` dependency to 2.0
|
||||||
* Make [curve25519-backend selection](https://github.com/dalek-cryptography/curve25519-dalek/#backends) more automatic
|
|
||||||
* Make `digest` an optional dependency
|
* Make `digest` an optional dependency
|
||||||
* Make `zeroize` an optional dependency
|
* Make `zeroize` an optional dependency
|
||||||
* Make `rand_core` an optional dependency
|
* Make `rand_core` an optional dependency
|
||||||
|
* Adopt [curve25519-backend selection](https://github.com/dalek-cryptography/curve25519-dalek/#backends) over features
|
||||||
* Make all batch verification deterministic remove `batch_deterministic` ([#256](https://github.com/dalek-cryptography/ed25519-dalek/pull/256))
|
* Make all batch verification deterministic remove `batch_deterministic` ([#256](https://github.com/dalek-cryptography/ed25519-dalek/pull/256))
|
||||||
* Remove `ExpandedSecretKey` API ((#205)[https://github.com/dalek-cryptography/ed25519-dalek/pull/205])
|
* Remove `ExpandedSecretKey` API ((#205)[https://github.com/dalek-cryptography/ed25519-dalek/pull/205])
|
||||||
* Rename `Keypair` → `SigningKey` and `PublicKey` → `VerifyingKey`
|
* Rename `Keypair` → `SigningKey` and `PublicKey` → `VerifyingKey`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue