diff --git a/CHANGELOG.md b/CHANGELOG.md index b00cafd7bb..974ff20551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ This is a pre-release. To depend on this version, use `rand = "=0.9.0-beta.0"` t - The `serde1` feature has been renamed `serde` (#1477) - The implicit feature `rand_chacha` has been removed. This is enabled by `std_rng`. (#1473) - Enable feature `small_rng` by default (#1455) -- Rename feature `getrandom` to `os_rng` +- Rename feature `getrandom` to `os_rng` (#1537) ### Inherited changes from `rand_core` - Add fn `RngCore::read_adapter` implementing `std::io::Read` (#1267) diff --git a/rand_chacha/CHANGELOG.md b/rand_chacha/CHANGELOG.md index 68cab9ee1b..af8aa1f9ec 100644 --- a/rand_chacha/CHANGELOG.md +++ b/rand_chacha/CHANGELOG.md @@ -6,12 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.9.0-beta.0] - 2024-11-25 This is a pre-release. To depend on this version, use `rand_chacha = "=0.9.0-beta.0"` to prevent automatic updates (which can be expected to include breaking changes). -- Rename feature `getrandom` to `os_rng` - Made `rand_chacha` propagate the `std` feature down to `rand_core` (#1153) - Remove usage of `unsafe` in `fn generate` (#1181) then optimise for AVX2 (~4-7%) (#1192) - The `serde1` feature has been renamed `serde` (#1477) - Revise crate docs (#1454) +- Rename feature `getrandom` to `os_rng` (#1537) ## [0.3.1] - 2021-06-09 - add getters corresponding to existing setters: `get_seed`, `get_stream` (#1124) diff --git a/rand_core/CHANGELOG.md b/rand_core/CHANGELOG.md index 3b74036f58..b22a6ea34c 100644 --- a/rand_core/CHANGELOG.md +++ b/rand_core/CHANGELOG.md @@ -6,7 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.9.0-beta.0] - 2024-11-25 This is a pre-release. To depend on this version, use `rand_core = "=0.9.0-beta.0"` to prevent automatic updates (which can be expected to include breaking changes). -- Rename feature `getrandom` to `os_rng` ### Compilation options and unsafe - Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using `--ignore-rust-version` @@ -19,6 +18,7 @@ This is a pre-release. To depend on this version, use `rand_core = "=0.9.0-beta. - Add trait `CryptoBlockRng: BlockRngCore`; make `trait CryptoRng: RngCore` (#1273) - Add traits `TryRngCore`, `TryCryptoRng` (#1424, #1499) - Add bounds `Clone` and `AsRef` to associated type `SeedableRng::Seed` (#1491) +- Rename feature `getrandom` to `os_rng` (#1537) ## [0.6.4] - 2022-09-15 - Fix unsoundness in `::next_u32` (#1160) diff --git a/rand_pcg/CHANGELOG.md b/rand_pcg/CHANGELOG.md index d7c736658d..5b9cd14005 100644 --- a/rand_pcg/CHANGELOG.md +++ b/rand_pcg/CHANGELOG.md @@ -6,12 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.9.0-beta.0] - 2024-11-25 This is a pre-release. To depend on this version, use `rand_chacha = "=0.9.0-beta.0"` to prevent automatic updates (which can be expected to include breaking changes). -- Rename feature `getrandom` to `os_rng` - The `serde1` feature has been renamed `serde` (#1477) - Add `Lcg128CmDxsm64` generator compatible with NumPy's `PCG64DXSM` (#1202) - Add examples for initializing the RNGs - Revise crate docs (#1454) +- Rename feature `getrandom` to `os_rng` (#1537) ## [0.3.1] - 2021-06-15 - Add `advance` methods to RNGs (#1111)