Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.
- Use `postcard` instead of `bincode` to test the serde feature (#1693)
- Avoid excessive allocation in `IteratorRandom::sample` when `amount` is much larger than iterator size ([#1695])
- Rename `os_rng` -> `sys_rng`, `OsRng` -> `SysRng`, `OsError` -> `SysError` ([#1697])
- Rename `Rng` -> `RngExt` as upstream `rand_core` has renamed `RngCore` -> `Rng` ([#1717])

### Additions
- Add fns `IndexedRandom::choose_iter`, `choose_weighted_iter` (#1632)
Expand All @@ -29,6 +30,7 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.

[#1695]: https://github.com/rust-random/rand/pull/1695
[#1697]: https://github.com/rust-random/rand/pull/1697
[#1717]: https://github.com/rust-random/rand/pull/1717

## [0.9.2] - 2025-07-20
### Deprecated
Expand Down
241 changes: 232 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rand"
version = "0.10.0-rc.7"
version = "0.10.0-rc.8"
authors = ["The Rand Project Developers", "The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -72,11 +72,11 @@ members = [
exclude = ["benches", "distr_test"]

[dependencies]
rand_core = { version = "0.10.0-rc-5", default-features = false }
rand_core = { version = "0.10.0-rc-6", 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.8", default-features = false, features = ["rng"], optional = true }
getrandom = { version = "0.4.0-rc.0", optional = true }
chacha20 = { version = "0.10.0-rc.9", default-features = false, features = ["rng"], optional = true }
getrandom = { version = "0.4.0-rc.1", optional = true }

[dev-dependencies]
rand_pcg = { path = "rand_pcg", version = "0.10.0-rc.1" }
Expand Down
Loading