ed: Prepare for pre.7 release (#904)

This commit is contained in:
Michael Rosenberg 2026-05-06 07:41:59 -04:00 committed by GitHub
parent 594808680c
commit 5b796f38c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 2 deletions

View file

@ -8,6 +8,15 @@ Entries are listed in reverse chronological order per undeprecated major series.
# 3.x series # 3.x series
## 3.0.0-pre.7
* Upgrade `ed25519` dependency to v3.0.0
* Upgrade `signature` dependency to v3.0.0
* Upgrade `sha3` dependency to v0.11
* Upgrade `getrandom` dependency to v0.4
* Upgrade `chacha20` dependency to v0.10
* Add `strobe-rs` dependency and delete vendored STROBE impl
## 3.0.0-pre.6 ## 3.0.0-pre.6
* Upgrade `rand_core` dependency to v0.10.0 * Upgrade `rand_core` dependency to v0.10.0

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ed25519-dalek" name = "ed25519-dalek"
version = "3.0.0-pre.6" version = "3.0.0-pre.7"
edition = "2024" edition = "2024"
authors = [ authors = [
"isis lovecruft <isis@patternsinthevoid.net>", "isis lovecruft <isis@patternsinthevoid.net>",

View file

@ -8,7 +8,7 @@ verification.
To import `ed25519-dalek`, add the following to the dependencies section of To import `ed25519-dalek`, add the following to the dependencies section of
your project's `Cargo.toml`: your project's `Cargo.toml`:
```toml ```toml
ed25519-dalek = "3.0.0-pre.6" ed25519-dalek = "3.0.0-pre.7"
``` ```
# Feature Flags # Feature Flags