Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.
- Pub export `Xoshiro128PlusPlus`, `Xoshiro256PlusPlus` prngs (#1649)
- Pub export `ChaCha8Rng`, `ChaCha12Rng`, `ChaCha20Rng` behind `chacha` feature (#1659)

### Removals
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keepchangelog recommends to use Added/Changed/Removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

None of the other recent titles match that... a job for another PR.

- Removed `ReseedingRng` ([#1722])

[#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
[#1722]: https://github.com/rust-random/rand/pull/1722

## [0.9.2] - 2025-07-20
### Deprecated
Expand Down
3 changes: 0 additions & 3 deletions src/rngs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,6 @@
//! [PCG]: https://www.pcg-random.org/
//! [xoshiro]: https://prng.di.unimi.it/

mod reseeding;
pub use reseeding::ReseedingRng;

#[cfg(feature = "small_rng")]
mod small;
#[cfg(feature = "small_rng")]
Expand Down
252 changes: 0 additions & 252 deletions src/rngs/reseeding.rs

This file was deleted.

Loading
Loading