Skip to content

Commit 090aa07

Browse files
authored
Cut new prereleases (#2251)
Releases the following, which (in some cases transitively) depend on the final `rand_core` v0.10 release: - `aead` v0.6.0-rc.9 - `cipher` v0.5.0-rc.7 - `crypto-common` v0.2.0-rc.14 - `digest` v0.11.0-rc.10 - `kem` v0.3.0-rc.4 - `password-hash` v0.6.0-rc.12 - `signature` v3.0.0-rc.10 - `universal-hash` v0.6.0-rc.9 Another `elliptic-curve` release is deferred until `crypto-bigint` can be updated
1 parent 4ee73a2 commit 090aa07

17 files changed

Lines changed: 34 additions & 23 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aead/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aead"
3-
version = "0.6.0-rc.8"
3+
version = "0.6.0-rc.9"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
1616
"""
1717

1818
[dependencies]
19-
common = { version = "0.2.0-rc.13", package = "crypto-common" }
19+
common = { version = "0.2.0-rc.14", package = "crypto-common" }
2020
inout = "0.2.2"
2121

2222
# optional dependencies

cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cipher"
3-
version = "0.5.0-rc.6"
3+
version = "0.5.0-rc.7"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for describing block ciphers and stream ciphers"
1414

1515
[dependencies]
16-
common = { version = "0.2.0-rc.13", package = "crypto-common" }
16+
common = { version = "0.2.0-rc.14", package = "crypto-common" }
1717
inout = "0.2.2"
1818

1919
# optional dependencies

crypto-common/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Changed
1515
- `BlockUser::BlockSize` is now bounded by the `BlockSizes` trait
1616
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
17+
- Bump `rand_core` to v0.10 ([#2250])
1718

1819
### Removed
1920
- `generate_*` and `try_generate_*` methods from KeyInit and KeyIvInit traits.
@@ -22,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2223
[#1759]: https://github.com/RustCrypto/traits/pull/1759
2324
[#2096]: https://github.com/RustCrypto/traits/pull/2096
2425
[#2213]: https://github.com/RustCrypto/traits/pull/2213
26+
[#2250]: https://github.com/RustCrypto/traits/pull/2250
2527

2628
## 0.1.7 (2025-11-12)
2729
### Changed

crypto-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto-common"
3-
version = "0.2.0-rc.13"
3+
version = "0.2.0-rc.14"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
1414

1515
[dependencies]
16-
common = { version = "0.2.0-rc.13", package = "crypto-common", path = "../crypto-common", default-features = false }
16+
common = { version = "0.2.0-rc.14", package = "crypto-common", path = "../crypto-common", default-features = false }
1717

1818
# optional dependencies
1919
aead = { version = "0.6.0-rc.5", path = "../aead", optional = true }

digest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "digest"
3-
version = "0.11.0-rc.9"
3+
version = "0.11.0-rc.10"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for cryptographic hash functions and message authentication codes"
1414

1515
[dependencies]
16-
common = { version = "0.2.0-rc.13", package = "crypto-common" }
16+
common = { version = "0.2.0-rc.14", package = "crypto-common" }
1717

1818
# optional dependencies
1919
block-buffer = { version = "0.11", optional = true }

elliptic-curve/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Changed
99
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
1010
- Accept mixed-case hex-encoded strings in `FromStr` impl for `ScalarValue` ([#2037])
11+
- Bump `rand_core` to v0.10 ([#2250])
1112

1213
[#1759]: https://github.com/RustCrypto/traits/pull/1759
1314
[#2037]: https://github.com/RustCrypto/traits/pull/2037
15+
[#2250]: https://github.com/RustCrypto/traits/pull/2250
1416

1517
## 0.13.8 (2023-11-18)
1618
### Changed

elliptic-curve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ features = ["hybrid-array", "rand_core", "subtle", "zeroize"]
2525
[dependencies]
2626
array = { package = "hybrid-array", version = "0.4", default-features = false, features = ["zeroize"] }
2727
base16ct = "1"
28-
common = { package = "crypto-common", version = "0.2.0-rc.13", features = ["rand_core"] }
28+
common = { package = "crypto-common", version = "0.2.0-rc.14", features = ["rand_core"] }
2929
rand_core = { version = "0.10", default-features = false }
3030
subtle = { version = "2.6", default-features = false }
3131
zeroize = { version = "1.7", default-features = false }

kem/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## 0.3.0 (UNRELEASED)
88
### Changed
99
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
10+
- Bump `rand_core` to v0.10 ([#2250])
1011

1112
[#1759]: https://github.com/RustCrypto/traits/pull/1759
13+
[#2250]: https://github.com/RustCrypto/traits/pull/2250
1214

1315
## 0.2.0 (2022-05-26)
1416
### Added

0 commit comments

Comments
 (0)