From 89fa3cacf226c3dea36ff3053cd0b6e76773b44c Mon Sep 17 00:00:00 2001 From: "Vincent A. Cicirello" Date: Sat, 8 Jun 2024 14:41:31 -0400 Subject: [PATCH] Prepare release 4.1.0 (#326) --- CHANGELOG.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7859c7e..5c5b7c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,22 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - 2024-05-31 +## [Unreleased] - 2024-06-08 ### Added ### Changed -* Improved Gaussian random number generation from ThreadLocalRandom in methods of RandomVariates class (internal change). -* Improved Gaussian random number generation in static methods of RandomVariates to choose between internal implementation of original ziggurat algorithm (for Java legacy random number generators Random and SecureRandom) or the Java API implementation of the modified ziggurat for all others (internal change). -* Improved Gaussian random number generation in EnhancedRandomGenerator class to choose between internal implementation of original ziggurat algorithm (for Java legacy random number generator Random) or the Java API implementation of the modified ziggurat for all others (internal change). ### Deprecated ### Removed ### Fixed -* Added missing overrides in EnhancedSplittableRandom of the rngs and erngs methods. -* Added missing overrides in EnhancedJumpableRandom of the rngs and erngs methods. ### Dependencies @@ -28,6 +23,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other +## [4.1.0] - 2024-06-08 + +### Changed +* Improved Gaussian random number generation from ThreadLocalRandom in methods of RandomVariates class (internal change). +* Improved Gaussian random number generation in static methods of RandomVariates to choose between internal implementation of original ziggurat algorithm (for Java legacy random number generators Random and SecureRandom) or the Java API implementation of the modified ziggurat for all others (internal change). +* Improved Gaussian random number generation in EnhancedRandomGenerator class to choose between internal implementation of original ziggurat algorithm (for Java legacy random number generator Random) or the Java API implementation of the modified ziggurat for all others (internal change). + +### Fixed +* Added missing overrides in EnhancedSplittableRandom of the rngs and erngs methods. +* Added missing overrides in EnhancedJumpableRandom of the rngs and erngs methods. + + ## [4.0.0] - 2024-05-14 **BREAKING CHANGES: See Removed and Changed sections for details.**