Skip to content

Commit 74ad09b

Browse files
committed
Bump rand_core version
1 parent 5d07c2d commit 74ad09b

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ exclude = ["benches", "distr_test"]
7979
rand_core = { path = "rand_core" }
8080

8181
[dependencies]
82-
rand_core = { path = "rand_core", version = "0.9.0", default-features = false }
82+
rand_core = { path = "rand_core", version = "0.10.0-rc.1", default-features = false }
8383
log = { version = "0.4.4", optional = true }
8484
serde = { version = "1.0.103", features = ["derive"], optional = true }
8585
chacha20 = { version = "=0.10.0-rc.2", default-features = false, features = ["rng"], optional = true }

rand_chacha/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ all-features = true
2020
rustdoc-args = ["--generate-link-to-definition"]
2121

2222
[dependencies]
23-
rand_core = { path = "../rand_core", version = "0.9.0" }
23+
rand_core = { path = "../rand_core", version = "0.10.0-rc.1" }
2424
ppv-lite86 = { version = "0.2.14", default-features = false, features = ["simd"] }
2525
serde = { version = "1.0", features = ["derive"], optional = true }
2626

2727
[dev-dependencies]
2828
# Only to test serde
2929
serde_json = "1.0.120"
30-
rand_core = { path = "../rand_core", version = "0.9.0" }
3130
rand = { path = "..", version = "0.10.0-rc.0" }
3231

3332
[features]

rand_core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [0.10.0-rc.1] — 2025-10-30
88
### API changes
99
- Relax `Sized` bound on impls of `SeedableRng` (#1641)
1010
- Move `rand_core::impls::*` to `rand_core::le` module (#1667)

rand_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.9.3"
3+
version = "0.10.0-rc.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_pcg/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ rustdoc-args = ["--generate-link-to-definition"]
2323
serde = ["dep:serde"]
2424

2525
[dependencies]
26-
rand_core = { path = "../rand_core", version = "0.9.0" }
26+
rand_core = { path = "../rand_core", version = "0.10.0-rc.1" }
2727
serde = { version = "1", features = ["derive"], optional = true }
2828

2929
[dev-dependencies]
3030
# This is for testing serde, unfortunately we can't specify feature-gated dev
3131
# deps yet, see: https://github.com/rust-lang/cargo/issues/1596
3232
# Versions prior to 1.1.4 had incorrect minimal dependencies.
3333
bincode = { version = "1.1.4" }
34-
rand_core = { path = "../rand_core", version = "0.9.0" }

0 commit comments

Comments
 (0)