Skip to content

Commit 2877f49

Browse files
authored
Add the thread_rng feature flag (#1547)
1 parent 936f863 commit 2877f49

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

distr_test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2021"
55
publish = false
66

77
[dev-dependencies]
8-
rand_distr = { path = "../rand_distr", version = "=0.5.0-beta.2", default-features = false, features = ["alloc"] }
9-
rand = { path = "..", version = "=0.9.0-beta.1", features = ["small_rng"] }
8+
rand_distr = { path = "../rand_distr", version = "=0.5.0-beta.3", default-features = false, features = ["alloc"] }
9+
rand = { path = "..", version = "=0.9.0-beta.3", features = ["small_rng"] }
1010
num-traits = "0.2.19"
1111
# Special functions for testing distributions
1212
special = "0.11.0"

rand_distr/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ 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+
## [0.5.0-beta.3] - 2025-01-03
8+
- Bump `rand` version (#1547)
9+
710
## [0.5.0-beta.2] - 2024-11-30
811
- Bump `rand` version
912

rand_distr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_distr"
3-
version = "0.5.0-beta.2"
3+
version = "0.5.0-beta.3"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -33,15 +33,15 @@ std_math = ["num-traits/std"]
3333
serde = ["dep:serde", "dep:serde_with", "rand/serde"]
3434

3535
[dependencies]
36-
rand = { path = "..", version = "=0.9.0-beta.1", default-features = false }
36+
rand = { path = "..", version = "=0.9.0-beta.3", default-features = false }
3737
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
3838
serde = { version = "1.0.103", features = ["derive"], optional = true }
3939
serde_with = { version = ">= 3.0, <= 3.11", optional = true }
4040

4141
[dev-dependencies]
4242
rand_pcg = { version = "=0.9.0-beta.1", path = "../rand_pcg" }
4343
# For inline examples
44-
rand = { path = "..", version = "=0.9.0-beta.1", features = ["small_rng"] }
44+
rand = { path = "..", version = "=0.9.0-beta.3", features = ["small_rng"] }
4545
# Histogram implementation for testing uniformity
4646
average = { version = "0.15", features = [ "std" ] }
4747
# Special functions for testing distributions

0 commit comments

Comments
 (0)