diff --git a/Cargo.toml b/Cargo.toml index 973990d561..f045e86ca9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ exclude = ["benches", "distr_test"] rand_core = { path = "rand_core" } [dependencies] -rand_core = { path = "rand_core", version = "0.9.0", default-features = false } +rand_core = { path = "rand_core", version = "0.10.0-rc.1", default-features = false } log = { version = "0.4.4", optional = true } serde = { version = "1.0.103", features = ["derive"], optional = true } chacha20 = { version = "=0.10.0-rc.2", default-features = false, features = ["rng"], optional = true } diff --git a/rand_chacha/Cargo.toml b/rand_chacha/Cargo.toml index 79d3580346..ee81dfc170 100644 --- a/rand_chacha/Cargo.toml +++ b/rand_chacha/Cargo.toml @@ -20,14 +20,13 @@ all-features = true rustdoc-args = ["--generate-link-to-definition"] [dependencies] -rand_core = { path = "../rand_core", version = "0.9.0" } +rand_core = { path = "../rand_core", version = "0.10.0-rc.1" } ppv-lite86 = { version = "0.2.14", default-features = false, features = ["simd"] } serde = { version = "1.0", features = ["derive"], optional = true } [dev-dependencies] # Only to test serde serde_json = "1.0.120" -rand_core = { path = "../rand_core", version = "0.9.0" } rand = { path = "..", version = "0.10.0-rc.0" } [features] diff --git a/rand_core/CHANGELOG.md b/rand_core/CHANGELOG.md index cf11a1ac52..51d4ea1867 100644 --- a/rand_core/CHANGELOG.md +++ b/rand_core/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.10.0-rc.1] — 2025-10-30 ### API changes - Relax `Sized` bound on impls of `SeedableRng` (#1641) - Move `rand_core::impls::*` to `rand_core::le` module (#1667) diff --git a/rand_core/Cargo.toml b/rand_core/Cargo.toml index 4ac6553cb6..7429a5537f 100644 --- a/rand_core/Cargo.toml +++ b/rand_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_core" -version = "0.9.3" +version = "0.10.0-rc.1" authors = ["The Rand Project Developers", "The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/rand_pcg/Cargo.toml b/rand_pcg/Cargo.toml index aba859dd20..1ea191eaf1 100644 --- a/rand_pcg/Cargo.toml +++ b/rand_pcg/Cargo.toml @@ -23,7 +23,7 @@ rustdoc-args = ["--generate-link-to-definition"] serde = ["dep:serde"] [dependencies] -rand_core = { path = "../rand_core", version = "0.9.0" } +rand_core = { path = "../rand_core", version = "0.10.0-rc.1" } serde = { version = "1", features = ["derive"], optional = true } [dev-dependencies] @@ -31,4 +31,3 @@ serde = { version = "1", features = ["derive"], optional = true } # deps yet, see: https://github.com/rust-lang/cargo/issues/1596 # Versions prior to 1.1.4 had incorrect minimal dependencies. bincode = { version = "1.1.4" } -rand_core = { path = "../rand_core", version = "0.9.0" }