From 5b414f827e441ae99999305292483d01357fb6f0 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Mon, 27 Nov 2023 21:43:02 +0100 Subject: [PATCH] Update changelogs --- rand_hc/CHANGELOG.md | 3 +++ rand_isaac/CHANGELOG.md | 5 +++++ rand_xorshift/CHANGELOG.md | 6 ++++++ rand_xoshiro/CHANGELOG.md | 7 +++++++ 4 files changed, 21 insertions(+) diff --git a/rand_hc/CHANGELOG.md b/rand_hc/CHANGELOG.md index bfd6cee6..278c1617 100644 --- a/rand_hc/CHANGELOG.md +++ b/rand_hc/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.3] - unreleased +- Add examples for initializing the RNGs + ## [0.3.2] - 2023-04-15 - Reduce stack use in `Hc128Core::init` diff --git a/rand_isaac/CHANGELOG.md b/rand_isaac/CHANGELOG.md index 921e237d..f156a218 100644 --- a/rand_isaac/CHANGELOG.md +++ b/rand_isaac/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - unreleased +- Correctly document MSRV as 1.36 +- Fix compiler and clippy warnings +- Add examples for initializing the RNGs + ## [0.3.0] - 2020-12-18 - Bump `rand_core` version to 0.6 (#17) - Derive PartialEq+Eq for IsaacCore, Isaac64Core, and IsaacArray (#6) diff --git a/rand_xorshift/CHANGELOG.md b/rand_xorshift/CHANGELOG.md index 52367bdb..8716492e 100644 --- a/rand_xorshift/CHANGELOG.md +++ b/rand_xorshift/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - unreleased +- Document how zero seeds are handled +- Correctly document MSRV as 1.36 +- Speed up `from_seed` implementation for 128-bit seeds +- Add examples for initializing the RNGs + ## [0.3.0] - 2020-12-18 - Bump `rand_core` version to 0.6 (#17) - Derive PartialEq+Eq for XorShiftRng (#6) diff --git a/rand_xoshiro/CHANGELOG.md b/rand_xoshiro/CHANGELOG.md index b7b5de7f..a515d12e 100644 --- a/rand_xoshiro/CHANGELOG.md +++ b/rand_xoshiro/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1] - unreleased +- Add `Xoshiro128Plus::long_jump` +- Add examples for initializing the RNGs +- Speed up `from_seed` implementation for 128-bit seeds +- Correctly document MSRV as 1.36 +- Fix a few typos in the docs + ## [0.6.0] - 2020-12-18 - Bump `rand_core` version to 0.6 (#17)