Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use rand 0.9.0; fixes #58

Merged
merged 12 commits into from
Jan 27, 2025
Prev Previous commit
Next Next commit
Update the CHANGELOGs
dhardy committed Jan 27, 2025
commit 21ca5698622bc163d3926c89b808dc1a2e92374e
4 changes: 3 additions & 1 deletion rand_hc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +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
## [0.4.0] - 2025-01-27
- Bump the MSRV to 1.63
- Update to `rand_core` v0.9.0
- Add examples for initializing the RNGs

## [0.3.2] - 2023-04-15
5 changes: 3 additions & 2 deletions rand_isaac/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,8 +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.1] - unreleased
- Correctly document MSRV as 1.36
## [0.4.0] - 2025-01-27
- Bump the MSRV to 1.63
- Update to `rand_core` v0.9.0
- Fix compiler and clippy warnings
- Add examples for initializing the RNGs

6 changes: 5 additions & 1 deletion rand_jitter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +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.4.0] - 2023-11-20
## [0.5.0] - 2025-01-27
- Bump the MSRV to 1.63
- Update to `rand_core` v0.9.0

## [0.4.0] - 2023-12-08
### Changed
- Update to `rand_core` v0.6
- Bump MSRV to 1.51
4 changes: 3 additions & 1 deletion rand_xorshift/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +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.1] - unreleased
## [0.4.0] - 2025-01-27
- Bump the MSRV to 1.63
- Update to `rand_core` v0.9.0
- Document how zero seeds are handled
- Correctly document MSRV as 1.36
- Speed up `from_seed` implementation for 128-bit seeds
5 changes: 3 additions & 2 deletions rand_xoshiro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,11 +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.6.1] - unreleased
## [0.7.0] - 2025-01-27
- Bump the MSRV to 1.63
- Update to `rand_core` v0.9.0
- 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