Skip to content

Commit 61d08aa

Browse files
authored
Update rand 0.10 (#50)
1 parent c97a8f5 commit 61d08aa

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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-
## [0.6.0]Unreleased
7+
## [0.6.0]2026-02-10
88
- Bump to MSRV 1.85.0 and Edition 2024 in line with `rand` ([#28])
99
- Update `rand` to version 0.10.0 ([#31], [#48])
1010

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_distr"
3-
version = "0.6.0-rc.0"
3+
version = "0.6.0"
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 = { version = "0.10.0-rc.9", default-features = false }
36+
rand = { version = "0.10.0", default-features = false }
3737
num-traits = { version = "0.2.9", default-features = false, features = ["libm"] }
3838
serde = { version = "1.0.166", features = ["derive"], optional = true }
3939
serde_with = { version = "3", optional = true }
4040

4141
[dev-dependencies]
42-
rand_pcg = { version = "0.10.0-rc.9" }
42+
rand_pcg = { version = "0.10.0" }
4343
# For inline examples
44-
rand = { version = "0.10.0-rc.9", features = [] }
44+
rand = { version = "0.10.0", features = [] }
4545
# Histogram implementation for testing uniformity
4646
average = { version = "0.16", features = [ "std" ] }
4747
# Special functions for testing distributions

benches/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ publish = false
77
[dependencies]
88

99
[dev-dependencies]
10-
rand = { version = "0.10.0-rc.9", features = [] }
11-
rand_pcg = "0.10.0-rc.9"
10+
rand = { version = "0.10.0", features = [] }
11+
rand_pcg = "0.10.0"
1212
rand_distr = { path = ".." }
1313
criterion = "0.5"
1414
criterion-cycles-per-byte = "0.6"

distr_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dev-dependencies]
88
rand_distr = { path = "..", default-features = false, features = ["alloc"] }
9-
rand = { version = "0.10.0-rc.9", features = [] }
9+
rand = { version = "0.10.0", features = [] }
1010
num-traits = "0.2.19"
1111
# Special functions for testing distributions
1212
special = "0.11.0"

0 commit comments

Comments
 (0)