Skip to content

Commit 1015e70

Browse files
authored
Prepare 0.9.0-alpha.1 (#1413)
1 parent 4cbbb34 commit 1015e70

File tree

10 files changed

+23
-14
lines changed

10 files changed

+23
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88

99
You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
1010

11-
## [0.9.1] - unreleased
11+
## [0.9.0-alpha.1] - 2024-03-18
1212
- Add the `Slice::num_choices` method to the Slice distribution (#1402)
1313

1414
### Generators

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"
3-
version = "0.9.0-alpha.0"
3+
version = "0.9.0-alpha.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -65,14 +65,14 @@ members = [
6565
]
6666

6767
[dependencies]
68-
rand_core = { path = "rand_core", version = "=0.9.0-alpha.0", default-features = false }
68+
rand_core = { path = "rand_core", version = "=0.9.0-alpha.1", default-features = false }
6969
log = { version = "0.4.4", optional = true }
7070
serde = { version = "1.0.103", features = ["derive"], optional = true }
71-
rand_chacha = { path = "rand_chacha", version = "=0.9.0-alpha.0", default-features = false, optional = true }
71+
rand_chacha = { path = "rand_chacha", version = "=0.9.0-alpha.1", default-features = false, optional = true }
7272
zerocopy = { version = "=0.8.0-alpha.6", default-features = false, features = ["simd"] }
7373

7474
[dev-dependencies]
75-
rand_pcg = { path = "rand_pcg", version = "=0.9.0-alpha.0" }
75+
rand_pcg = { path = "rand_pcg", version = "=0.9.0-alpha.1" }
7676
# Only to test serde1
7777
bincode = "1.2.1"
7878
rayon = "1.5.3"

rand_chacha/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ 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.9.0-alpha.1] - 2024-03-18
8+
79
## [0.9.0-alpha.0] - 2024-02-18
810
This is a pre-release. To depend on this version, use `rand_chacha = "=0.9.0-alpha.0"` to prevent automatic updates (which can be expected to include breaking changes).
911

rand_chacha/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_chacha"
3-
version = "0.9.0-alpha.0"
3+
version = "0.9.0-alpha.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers", "The CryptoCorrosion Contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -19,7 +19,7 @@ rust-version = "1.60"
1919
rustdoc-args = ["--generate-link-to-definition"]
2020

2121
[dependencies]
22-
rand_core = { path = "../rand_core", version = "=0.9.0-alpha.0" }
22+
rand_core = { path = "../rand_core", version = "=0.9.0-alpha.1" }
2323
ppv-lite86 = { version = "0.2.14", default-features = false, features = ["simd"] }
2424
serde = { version = "1.0", features = ["derive"], optional = true }
2525

rand_core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ 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.9.0-alpha.1] - 2024-03-18
8+
79
## [0.9.0-alpha.0] - 2024-02-18
810
This is a pre-release. To depend on this version, use `rand_core = "=0.9.0-alpha.0"` to prevent automatic updates (which can be expected to include breaking changes).
911

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.0-alpha.0"
3+
version = "0.9.0-alpha.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

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-alpha.1] - 2024-03-18
8+
- Target `rand` version `0.9.0-alpha.1`
9+
710
## [0.5.0-alpha.0] - 2024-02-18
811
This is a pre-release. To depend on this version, use `rand_distr = "=0.5.0-alpha.0"` to prevent automatic updates (which can be expected to include breaking changes).
912

rand_distr/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.5.0-alpha.0"
3+
version = "0.5.0-alpha.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -27,15 +27,15 @@ std_math = ["num-traits/std"]
2727
serde1 = ["serde", "rand/serde1"]
2828

2929
[dependencies]
30-
rand = { path = "..", version = "=0.9.0-alpha.0", default-features = false }
30+
rand = { path = "..", version = "=0.9.0-alpha.1", default-features = false }
3131
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
3232
serde = { version = "1.0.103", features = ["derive"], optional = true }
3333
serde_with = { version = "3.6.1", optional = true }
3434

3535
[dev-dependencies]
36-
rand_pcg = { version = "=0.9.0-alpha.0", path = "../rand_pcg" }
36+
rand_pcg = { version = "=0.9.0-alpha.1", path = "../rand_pcg" }
3737
# For inline examples
38-
rand = { path = "..", version = "=0.9.0-alpha.0", features = ["small_rng"] }
38+
rand = { path = "..", version = "=0.9.0-alpha.1", features = ["small_rng"] }
3939
# Histogram implementation for testing uniformity
4040
average = { version = "0.14", features = [ "std" ] }
4141
# Special functions for testing distributions

rand_pcg/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ 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.9.0-alpha.1] - 2024-03-18
8+
79
## [0.9.0-alpha.0] - 2024-02-18
810
This is a pre-release. To depend on this version, use `rand_pcg = "=0.9.0-alpha.0"` to prevent automatic updates (which can be expected to include breaking changes).
911

rand_pcg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_pcg"
3-
version = "0.9.0-alpha.0"
3+
version = "0.9.0-alpha.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -22,7 +22,7 @@ rustdoc-args = ["--generate-link-to-definition"]
2222
serde1 = ["serde"]
2323

2424
[dependencies]
25-
rand_core = { path = "../rand_core", version = "=0.9.0-alpha.0" }
25+
rand_core = { path = "../rand_core", version = "=0.9.0-alpha.1" }
2626
serde = { version = "1", features = ["derive"], optional = true }
2727

2828
[dev-dependencies]

0 commit comments

Comments
 (0)