mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
Prep v5.0-rc.1 (#911)
This commit is contained in:
parent
1c14d54c60
commit
d995caf38f
9 changed files with 14 additions and 14 deletions
|
|
@ -5,8 +5,8 @@ major series.
|
||||||
|
|
||||||
## 5.x series
|
## 5.x series
|
||||||
|
|
||||||
|
### 5.0.0-rc.1 - 2026-06-18
|
||||||
# Unreleased
|
Unreleased
|
||||||
|
|
||||||
* Remove `group-bits` feature due to soundness issues with underlying trait ([#909](https://github.com/dalek-cryptography/curve25519-dalek/pull/909))
|
* Remove `group-bits` feature due to soundness issues with underlying trait ([#909](https://github.com/dalek-cryptography/curve25519-dalek/pull/909))
|
||||||
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name = "curve25519-dalek"
|
||||||
# Before incrementing:
|
# Before incrementing:
|
||||||
# - update CHANGELOG
|
# - update CHANGELOG
|
||||||
# - update README if required by semver
|
# - update README if required by semver
|
||||||
version = "5.0.0-rc.0"
|
version = "5.0.0-rc.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
rust-version = "1.85.0"
|
rust-version = "1.85.0"
|
||||||
authors = [
|
authors = [
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ cofactor-related abstraction mismatches.
|
||||||
To import `curve25519-dalek`, add the following to the dependencies section of
|
To import `curve25519-dalek`, add the following to the dependencies section of
|
||||||
your project's `Cargo.toml`:
|
your project's `Cargo.toml`:
|
||||||
```toml
|
```toml
|
||||||
curve25519-dalek = "5.0.0-rc.0"
|
curve25519-dalek = "5.0.0-rc.1"
|
||||||
```
|
```
|
||||||
|
|
||||||
If opting into [SemVer-exempted features](#public-api-semver-exemptions) a range
|
If opting into [SemVer-exempted features](#public-api-semver-exemptions) a range
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ Entries are listed in reverse chronological order per undeprecated major series.
|
||||||
|
|
||||||
# 3.x series
|
# 3.x series
|
||||||
|
|
||||||
## Unreleased
|
## 3.0.0-rc.1 - 2026-06-18
|
||||||
|
|
||||||
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ed25519-dalek"
|
name = "ed25519-dalek"
|
||||||
version = "3.0.0-rc.0"
|
version = "3.0.0-rc.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = [
|
authors = [
|
||||||
"isis lovecruft <isis@patternsinthevoid.net>",
|
"isis lovecruft <isis@patternsinthevoid.net>",
|
||||||
|
|
@ -28,7 +28,7 @@ rustdoc-args = [
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "5.0.0-rc.0", default-features = false, features = [
|
curve25519-dalek = { version = "5.0.0-rc.1", default-features = false, features = [
|
||||||
"digest",
|
"digest",
|
||||||
] }
|
] }
|
||||||
ed25519 = { version = "3", default-features = false }
|
ed25519 = { version = "3", default-features = false }
|
||||||
|
|
@ -44,11 +44,11 @@ zeroize = { version = "1.5", default-features = false, optional = true }
|
||||||
strobe-rs = { version = "0.13", optional = true }
|
strobe-rs = { version = "0.13", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
curve25519-dalek = { version = "5.0.0-rc.0", default-features = false, features = [
|
curve25519-dalek = { version = "5.0.0-rc.1", default-features = false, features = [
|
||||||
"digest",
|
"digest",
|
||||||
"rand_core",
|
"rand_core",
|
||||||
] }
|
] }
|
||||||
x25519-dalek = { version = "3.0.0-rc.0", default-features = false, features = [
|
x25519-dalek = { version = "3.0.0-rc.1", default-features = false, features = [
|
||||||
"static_secrets",
|
"static_secrets",
|
||||||
] }
|
] }
|
||||||
blake2 = "0.11.0-rc.6"
|
blake2 = "0.11.0-rc.6"
|
||||||
|
|
|
||||||
|
|
@ -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-rc.0"
|
ed25519-dalek = "3.0.0-rc.1"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Feature Flags
|
# Feature Flags
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
# 3.x Series
|
# 3.x Series
|
||||||
|
|
||||||
## Unreleased
|
## 3.0.0-rc.1 - 2026-06-18
|
||||||
|
|
||||||
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
* Re-export `rand_core` ([#908](https://github.com/dalek-cryptography/curve25519-dalek/pull/908))
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ edition = "2024"
|
||||||
# - update html_root_url
|
# - update html_root_url
|
||||||
# - update CHANGELOG
|
# - update CHANGELOG
|
||||||
# - if any changes were made to README.md, mirror them in src/lib.rs docs
|
# - if any changes were made to README.md, mirror them in src/lib.rs docs
|
||||||
version = "3.0.0-rc.0"
|
version = "3.0.0-rc.1"
|
||||||
authors = [
|
authors = [
|
||||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
"DebugSteven <debugsteven@gmail.com>",
|
"DebugSteven <debugsteven@gmail.com>",
|
||||||
|
|
@ -42,7 +42,7 @@ rustdoc-args = [
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "5.0.0-rc.0", default-features = false }
|
curve25519-dalek = { version = "5.0.0-rc.1", default-features = false }
|
||||||
rand_core = { version = "0.10", default-features = false }
|
rand_core = { version = "0.10", default-features = false }
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@ To import `x25519-dalek`, add the following to your project's `Cargo.toml`:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
x25519-dalek = "3.0.0-rc.0"
|
x25519-dalek = "3.0.0-rc.1"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Feature Flags
|
# Feature Flags
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue