Skip to content

Commit fc8a8a5

Browse files
authored
Cut pre.0 prereleases (#784)
1 parent 6a515e6 commit fc8a8a5

File tree

9 files changed

+76
-44
lines changed

9 files changed

+76
-44
lines changed

curve25519-dalek/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ major series.
55

66
## 5.x series
77

8-
## 5.0.0-pre
8+
## 5.0.0-pre.0
99

1010
* Update edition to 2024
1111
* Update the MSRV from 1.60 to 1.85
@@ -284,4 +284,3 @@ besides the `rand_core` version bump, there are no other user-visible changes.
284284
### 1.0.0
285285

286286
Initial stable release. Yanked due to a dependency mistake (see above).
287-

curve25519-dalek/Cargo.toml

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ name = "curve25519-dalek"
44
# - update CHANGELOG
55
# - update README if required by semver
66
# - if README was updated, also update module documentation in src/lib.rs
7-
version = "5.0.0-pre"
7+
version = "5.0.0-pre.0"
88
edition = "2024"
99
rust-version = "1.85.0"
10-
authors = ["Isis Lovecruft <[email protected]>",
11-
"Henry de Valence <[email protected]>"]
10+
authors = [
11+
"Isis Lovecruft <[email protected]>",
12+
"Henry de Valence <[email protected]>",
13+
]
1214
readme = "README.md"
1315
license = "BSD-3-Clause"
1416
repository = "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek"
@@ -17,17 +19,22 @@ documentation = "https://docs.rs/curve25519-dalek"
1719
categories = ["cryptography", "no-std"]
1820
keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"]
1921
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519"
20-
exclude = [
21-
"**/.gitignore",
22-
".gitignore",
23-
]
22+
exclude = ["**/.gitignore", ".gitignore"]
2423

2524
[package.metadata.docs.rs]
2625
rustdoc-args = [
27-
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
28-
"--cfg", "docsrs",
26+
"--html-in-header",
27+
"docs/assets/rustdoc-include-katex-header.html",
28+
"--cfg",
29+
"docsrs",
30+
]
31+
features = [
32+
"serde",
33+
"rand_core",
34+
"digest",
35+
"legacy_compatibility",
36+
"group-bits",
2937
]
30-
features = ["serde", "rand_core", "digest", "legacy_compatibility", "group-bits"]
3138

3239
[dev-dependencies]
3340
sha2 = { version = "0.11.0-rc.0", default-features = false }
@@ -50,9 +57,15 @@ cfg-if = "1"
5057
ff = { version = "=0.14.0-pre.0", default-features = false, optional = true }
5158
group = { version = "=0.14.0-pre.0", default-features = false, optional = true }
5259
rand_core = { version = "0.9", default-features = false, optional = true }
53-
digest = { version = "0.11.0-rc.0", default-features = false, optional = true, features = ["block-api"] }
54-
subtle = { version = "2.6.0", default-features = false, features = ["const-generics"] }
55-
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
60+
digest = { version = "0.11.0-rc.0", default-features = false, optional = true, features = [
61+
"block-api",
62+
] }
63+
subtle = { version = "2.6.0", default-features = false, features = [
64+
"const-generics",
65+
] }
66+
serde = { version = "1.0", default-features = false, optional = true, features = [
67+
"derive",
68+
] }
5669
zeroize = { version = "1", default-features = false, optional = true }
5770

5871
[target.'cfg(target_arch = "x86_64")'.dependencies]

curve25519-dalek/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cofactor-related abstraction mismatches.
3535
To import `curve25519-dalek`, add the following to the dependencies section of
3636
your project's `Cargo.toml`:
3737
```toml
38-
curve25519-dalek = "5.0.0-pre"
38+
curve25519-dalek = "5.0.0-pre.0"
3939
```
4040

4141
If opting into [SemVer-exempted features](#public-api-semver-exemptions) a range

ed25519-dalek/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Entries are listed in reverse chronological order per undeprecated major series.
88

99
# 3.x series
1010

11-
## 3.0.0-pre
11+
## 3.0.0-pre.0
1212

1313
* Update edition to 2024
1414
* Update the MSRV from 1.60 to 1.85

ed25519-dalek/Cargo.toml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "ed25519-dalek"
3-
version = "3.0.0-pre"
3+
version = "3.0.0-pre.0"
44
edition = "2024"
55
authors = [
66
"isis lovecruft <[email protected]>",
77
"Tony Arcieri <[email protected]>",
8-
"Michael Rosenberg <[email protected]>"
8+
"Michael Rosenberg <[email protected]>",
99
]
1010
readme = "README.md"
1111
license = "BSD-3-Clause"
@@ -15,18 +15,22 @@ documentation = "https://docs.rs/ed25519-dalek"
1515
keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
1616
categories = ["cryptography", "no-std"]
1717
description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust."
18-
exclude = [ ".gitignore", "TESTVECTORS", "VALIDATIONVECTORS", "res/*" ]
18+
exclude = [".gitignore", "TESTVECTORS", "VALIDATIONVECTORS", "res/*"]
1919
rust-version = "1.85"
2020

2121
[package.metadata.docs.rs]
2222
rustdoc-args = [
23-
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
24-
"--cfg", "docsrs",
23+
"--html-in-header",
24+
"docs/assets/rustdoc-include-katex-header.html",
25+
"--cfg",
26+
"docsrs",
2527
]
2628
features = ["batch", "digest", "hazmat", "pem", "serde"]
2729

2830
[dependencies]
29-
curve25519-dalek = { version = "=5.0.0-pre", path = "../curve25519-dalek", default-features = false, features = ["digest"] }
31+
curve25519-dalek = { version = "=5.0.0-pre.0", path = "../curve25519-dalek", default-features = false, features = [
32+
"digest",
33+
] }
3034
ed25519 = { version = "=3.0.0-pre.0", default-features = false }
3135
signature = { version = "=3.0.0-rc.1", optional = true, default-features = false }
3236
sha2 = { version = "0.11.0-rc.0", default-features = false }
@@ -39,8 +43,13 @@ serde = { version = "1.0", default-features = false, optional = true }
3943
zeroize = { version = "1.5", default-features = false, optional = true }
4044

4145
[dev-dependencies]
42-
curve25519-dalek = { version = "=5.0.0-pre", path = "../curve25519-dalek", default-features = false, features = ["digest", "rand_core"] }
43-
x25519-dalek = { version = "=3.0.0-pre", path = "../x25519-dalek", default-features = false, features = ["static_secrets"] }
46+
curve25519-dalek = { version = "=5.0.0-pre.0", path = "../curve25519-dalek", default-features = false, features = [
47+
"digest",
48+
"rand_core",
49+
] }
50+
x25519-dalek = { version = "=3.0.0-pre.0", path = "../x25519-dalek", default-features = false, features = [
51+
"static_secrets",
52+
] }
4453
blake2 = "0.11.0-rc.0"
4554
sha3 = "0.11.0-rc.0"
4655
hex = "0.4"
@@ -62,7 +71,13 @@ required-features = ["rand_core"]
6271

6372
[features]
6473
default = ["fast", "zeroize"]
65-
alloc = ["curve25519-dalek/alloc", "ed25519/alloc", "signature/alloc", "serde?/alloc", "zeroize?/alloc"]
74+
alloc = [
75+
"curve25519-dalek/alloc",
76+
"ed25519/alloc",
77+
"signature/alloc",
78+
"serde?/alloc",
79+
"zeroize?/alloc",
80+
]
6681

6782
batch = ["alloc", "dep:keccak", "rand_core"]
6883
fast = ["curve25519-dalek/precomputed-tables"]

ed25519-dalek/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ verification.
88
To import `ed25519-dalek`, add the following to the dependencies section of
99
your project's `Cargo.toml`:
1010
```toml
11-
ed25519-dalek = "3.0.0-pre"
11+
ed25519-dalek = "3.0.0-pre.0"
1212
```
1313

1414
# Feature Flags

x25519-dalek/CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Entries are listed in reverse chronological order.
44

55
# 3.x Series
66

7-
## 3.0.0-pre
7+
## 3.0.0-pre.0
88

99
* Update edition to 2024
1010
* Update the MSRV from 1.60 to 1.85
@@ -14,7 +14,7 @@ Entries are listed in reverse chronological order.
1414

1515
# 2.x Series
1616

17-
* Note: All `x255919-dalek` 2.x releases are in sync with the underlying `curve25519-dalek` 4.x releases.
17+
* Note: All `x255919-dalek` 2.x releases are in sync with the underlying `curve25519-dalek` 4.x releases.
1818

1919
## 2.0.1
2020

@@ -108,5 +108,4 @@ Entries are listed in reverse chronological order.
108108

109109
* Adds support for static and ephemeral keys.
110110

111-
[curve25519-dalek backend]: https://github.com/dalek-cryptography/curve25519-dalek/#backends
112-
111+
[curve25519-dalek backend]: https://github.com/dalek-cryptography/curve25519-dalek/#backends

x25519-dalek/Cargo.toml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2024"
66
# - update html_root_url
77
# - update CHANGELOG
88
# - if any changes were made to README.md, mirror them in src/lib.rs docs
9-
version = "3.0.0-pre"
9+
version = "3.0.0-pre.0"
1010
authors = [
1111
"Isis Lovecruft <[email protected]>",
1212
"DebugSteven <[email protected]>",
@@ -18,29 +18,35 @@ repository = "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/x
1818
homepage = "https://github.com/dalek-cryptography/curve25519-dalek"
1919
documentation = "https://docs.rs/x25519-dalek"
2020
categories = ["cryptography", "no-std"]
21-
keywords = ["cryptography", "curve25519", "key-exchange", "x25519", "diffie-hellman"]
22-
description = "X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek."
23-
exclude = [
24-
".gitignore",
25-
".travis.yml",
26-
"CONTRIBUTING.md",
21+
keywords = [
22+
"cryptography",
23+
"curve25519",
24+
"key-exchange",
25+
"x25519",
26+
"diffie-hellman",
2727
]
28+
description = "X25519 elliptic curve Diffie-Hellman key exchange in pure-Rust, using curve25519-dalek."
29+
exclude = [".gitignore", ".travis.yml", "CONTRIBUTING.md"]
2830
rust-version = "1.85"
2931

3032
[badges]
31-
travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master"}
33+
travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master" }
3234

3335
[package.metadata.docs.rs]
3436
rustdoc-args = [
35-
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
36-
"--cfg", "docsrs",
37+
"--html-in-header",
38+
"docs/assets/rustdoc-include-katex-header.html",
39+
"--cfg",
40+
"docsrs",
3741
]
3842
features = ["os_rng", "reusable_secrets", "serde", "static_secrets"]
3943

4044
[dependencies]
41-
curve25519-dalek = { version = "=5.0.0-pre", path = "../curve25519-dalek", default-features = false }
45+
curve25519-dalek = { version = "=5.0.0-pre.0", path = "../curve25519-dalek", default-features = false }
4246
rand_core = { version = "0.9", default-features = false }
43-
serde = { version = "1", default-features = false, optional = true, features = ["derive"] }
47+
serde = { version = "1", default-features = false, optional = true, features = [
48+
"derive",
49+
] }
4450
zeroize = { version = "1", default-features = false, optional = true }
4551

4652
[dev-dependencies]

x25519-dalek/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To install, add the following to your project's `Cargo.toml`:
103103

104104
```toml
105105
[dependencies]
106-
x25519-dalek = "3.0.0-pre"
106+
x25519-dalek = "3.0.0-pre.0"
107107
```
108108

109109
# MSRV

0 commit comments

Comments
 (0)