mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
curve,x,ed: Prepare for pre.5 release (#874)
This commit is contained in:
parent
b7531ca318
commit
11f5375375
9 changed files with 22 additions and 10 deletions
|
|
@ -5,6 +5,10 @@ major series.
|
|||
|
||||
## 5.x series
|
||||
|
||||
## 5.0.0-pre.5
|
||||
|
||||
* Upgrade `rand_core` dependency to v0.10.0-rc-6
|
||||
|
||||
## 5.0.0-pre.4
|
||||
|
||||
* Add allocation-free `EdwardsPoint::compress_batch()`
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name = "curve25519-dalek"
|
|||
# Before incrementing:
|
||||
# - update CHANGELOG
|
||||
# - update README if required by semver
|
||||
version = "5.0.0-pre.4"
|
||||
version = "5.0.0-pre.5"
|
||||
edition = "2024"
|
||||
rust-version = "1.85.0"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ cofactor-related abstraction mismatches.
|
|||
To import `curve25519-dalek`, add the following to the dependencies section of
|
||||
your project's `Cargo.toml`:
|
||||
```toml
|
||||
curve25519-dalek = "5.0.0-pre.4"
|
||||
curve25519-dalek = "5.0.0-pre.5"
|
||||
```
|
||||
|
||||
If opting into [SemVer-exempted features](#public-api-semver-exemptions) a range
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@ Entries are listed in reverse chronological order per undeprecated major series.
|
|||
|
||||
# 3.x series
|
||||
|
||||
## 3.0.0-pre.5
|
||||
|
||||
* Upgrade `rand_core` dependency to v0.10.0-rc-6
|
||||
|
||||
## 3.0.0-pre.4
|
||||
|
||||
* Upgrade `rand_core` dependency to v0.10.0-rc-3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ed25519-dalek"
|
||||
version = "3.0.0-pre.4"
|
||||
version = "3.0.0-pre.5"
|
||||
edition = "2024"
|
||||
authors = [
|
||||
"isis lovecruft <isis@patternsinthevoid.net>",
|
||||
|
|
@ -28,7 +28,7 @@ rustdoc-args = [
|
|||
all-features = true
|
||||
|
||||
[dependencies]
|
||||
curve25519-dalek = { version = "=5.0.0-pre.4", default-features = false, features = [
|
||||
curve25519-dalek = { version = "=5.0.0-pre.5", default-features = false, features = [
|
||||
"digest",
|
||||
] }
|
||||
ed25519 = { version = "3.0.0-rc.2", default-features = false }
|
||||
|
|
@ -43,11 +43,11 @@ serde = { version = "1.0", default-features = false, optional = true }
|
|||
zeroize = { version = "1.5", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
curve25519-dalek = { version = "=5.0.0-pre.4", default-features = false, features = [
|
||||
curve25519-dalek = { version = "=5.0.0-pre.5", default-features = false, features = [
|
||||
"digest",
|
||||
"rand_core",
|
||||
] }
|
||||
x25519-dalek = { version = "=3.0.0-pre.4", default-features = false, features = [
|
||||
x25519-dalek = { version = "=3.0.0-pre.5", default-features = false, features = [
|
||||
"static_secrets",
|
||||
] }
|
||||
blake2 = "0.11.0-rc.4"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ verification.
|
|||
To import `ed25519-dalek`, add the following to the dependencies section of
|
||||
your project's `Cargo.toml`:
|
||||
```toml
|
||||
ed25519-dalek = "3.0.0-pre.4"
|
||||
ed25519-dalek = "3.0.0-pre.5"
|
||||
```
|
||||
|
||||
# Feature Flags
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@ Entries are listed in reverse chronological order.
|
|||
|
||||
# 3.x Series
|
||||
|
||||
## 3.0.0-pre.5
|
||||
|
||||
* Upgrade `rand_core` dependency to v0.10.0-rc-6
|
||||
|
||||
## 3.0.0-pre.4
|
||||
|
||||
* Removed `alloc` feature flag, which was doing nothing
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ edition = "2024"
|
|||
# - update html_root_url
|
||||
# - update CHANGELOG
|
||||
# - if any changes were made to README.md, mirror them in src/lib.rs docs
|
||||
version = "3.0.0-pre.4"
|
||||
version = "3.0.0-pre.5"
|
||||
authors = [
|
||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
"DebugSteven <debugsteven@gmail.com>",
|
||||
|
|
@ -42,7 +42,7 @@ rustdoc-args = [
|
|||
all-features = true
|
||||
|
||||
[dependencies]
|
||||
curve25519-dalek = { version = "=5.0.0-pre.4", default-features = false }
|
||||
curve25519-dalek = { version = "=5.0.0-pre.5", default-features = false }
|
||||
rand_core = { version = "0.10.0-rc-6", default-features = false }
|
||||
|
||||
# optional dependencies
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ To import `x25519-dalek`, add the following to your project's `Cargo.toml`:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
x25519-dalek = "3.0.0-pre.4"
|
||||
x25519-dalek = "3.0.0-pre.5"
|
||||
```
|
||||
|
||||
# Feature Flags
|
||||
|
|
|
|||
Loading…
Reference in a new issue