Skip to content

Commit fc7bf7f

Browse files
committed
CHANGELOGs
1 parent 908c584 commit fc7bf7f

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.
1414
- Rename fns `IndexedRandom::choose_multiple` -> `sample`, `choose_multiple_array` -> `sample_array`, `choose_multiple_weighted` -> `sample_weighted`, struct `SliceChooseIter` -> `IndexedSamples` and fns `IteratorRandom::choose_multiple` -> `sample`, `choose_multiple_fill` -> `sample_fill` (#1632)
1515
- Use Edition 2024 and MSRV 1.85 (#1653)
1616
- Let `Fill` be implemented for element types, not sliceable types (#1652)
17+
- Fix `OsError::raw_os_error` on UEFI targets by returning `Option<usize>` (#1665)
1718
- Replace fn `TryRngCore::read_adapter(..) -> RngReadAdapter` with simpler struct `RngReader` (#1669)
19+
- Remove fns `SeedableRng::from_os_rng`, `try_from_os_rng` (#1674)
1820

1921
### Additions
2022
- Add fns `IndexedRandom::choose_iter`, `choose_weighted_iter` (#1632)

rand_chacha/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [0.10.0] - UNRELEASED
88
### Changed
99
- Bump MSRV to 1.85 and edition to 2024 (#1671)
10+
- Remove feature `os_rng` (#1674)
1011

1112
## [0.9.0] - 2025-01-27
1213
### Dependencies and features

rand_core/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## Unreleased
88
### API changes
99
- Relax `Sized` bound on impls of `SeedableRng` (#1641)
10-
- Fix `OsError::raw_os_error` on UEFI targets by returning `Option<usize>` (#1665)
1110
- Move `rand_core::impls::*` to `rand_core::le` module (#1667)
1211
- Use Edition 2024 and MSRV 1.85 (#1668)
1312
- Remove fn `TryRngCore::read_adapter(..) -> RngReadAdapter` (replaced with `rand::RngReader`) (#1669)
13+
- Remove feature `os_rng`, structs `OsRng` and `OsError` and fns `from_os_rng`, `try_from_os_rng` (#1674)
14+
- Remove feature `std` (#1674)
15+
- Removed dependency `getrandom` (#1674)
1416

1517
## [0.9.3] — 2025-02-29
1618
### Other

rand_pcg/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [0.10.0 — Unreleased]
88
### Changes
99
- Use Edition 2024 and MSRV 1.85 (#1653)
10+
- Remove feature `os_rng` (#1674)
1011

1112
## [0.9.0] - 2025-01-27
1213
### Dependencies and features

0 commit comments

Comments
 (0)