------------------------------------------------------------------- Thu Jun 26 20:35:31 UTC 2025 - Peter Simons - Update splitmix to version 0.1.3.1. # 0.1.3.1 - Fix linking issue `symbol not found in flat namespace '_kSecRandomDefault'` when using splitmix in TH on macOS. ------------------------------------------------------------------- Wed Jun 25 18:35:38 UTC 2025 - Peter Simons - Update splitmix to version 0.1.3. # 0.1.3 - Use system specific entropy/randomess sources to initialise the default generator. Specifically `SecRandomCopyBytes` on Apple platforms and `RtlGenRandom` on Windows. ------------------------------------------------------------------- Mon Jun 9 17:17:55 UTC 2025 - Peter Simons - Update splitmix to version 0.1.2. # 0.1.2 - Use `getentropy` for initialisation on unix-like systems (i.e. not Windows). ------------------------------------------------------------------- Thu Dec 19 14:34:52 UTC 2024 - Peter Simons - Update splitmix to version 0.1.1. # 0.1.1 - Drop support for GHCs prior 8.6.5 - Support GHC-9.12 ------------------------------------------------------------------- Tue Apr 2 18:43:40 UTC 2024 - Peter Simons - Update splitmix to version 0.1.0.5 revision 1. Upstream has revised the Cabal build instructions on Hackage. ------------------------------------------------------------------- Tue Oct 3 18:26:05 UTC 2023 - Peter Simons - Update splitmix to version 0.1.0.5. Upstream has not updated the file "Changelog.md" since the last release. ------------------------------------------------------------------- Thu Mar 30 17:08:24 UTC 2023 - Peter Simons - Updated spec file to conform with ghc-rpm-macros-2.5.2. ------------------------------------------------------------------- Sun Jan 15 19:14:11 UTC 2023 - Peter Simons - Update splitmix to version 0.1.0.4 revision 2. Upstream has revised the Cabal build instructions on Hackage. ------------------------------------------------------------------- Wed Aug 10 08:18:36 UTC 2022 - Peter Simons - Update splitmix to version 0.1.0.4 revision 1. Upstream has revised the Cabal build instructions on Hackage. ------------------------------------------------------------------- Mon Nov 1 08:22:08 UTC 2021 - psimons@suse.com - Update splitmix to version 0.1.0.4. # 0.1.0.4 - Add TestU01 test-suite ------------------------------------------------------------------- Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup - disable %{ix86} build ------------------------------------------------------------------- Fri Oct 23 02:03:35 UTC 2020 - psimons@suse.com - Update splitmix to version 0.1.0.3. # 0.1.0.3 - Fix oops bugs in 0.1.0.2 - It's lowercase `windows.h`. I blame Microsoft docs for using capital case `Windows.h` in the docs. https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-getprocessid - accidental `shiftL` vs `shiftR` mixup for 32-bit generator initialization. Doesn't affect Linux. ------------------------------------------------------------------- Tue Oct 20 02:03:27 UTC 2020 - psimons@suse.com - Update splitmix to version 0.1.0.2. # 0.1.0.2 - Drop `time` dependency in favour of handcoded initialization - On Unix platforms we use `/dev/urandom` if it exists, otherwise use `gettimeofday`, `clock` and `getpid`. - On Windows we use `GetCurrentProcessID`, `GetCurrentThreadId()`, `GetTickCount`, `GetSystemTime` and `QueryPerformanceCounter`. - On GHCJS use `Math.random()` - Using `time` is a fallback option (e.g. for Hugs). ------------------------------------------------------------------- Tue Aug 18 10:46:05 UTC 2020 - Peter Simons - Replace %setup -q with the more modern %autosetup macro. ------------------------------------------------------------------- Fri Aug 7 02:00:26 UTC 2020 - psimons@suse.com - Update splitmix to version 0.1.0.1. # 0.1.0.1 - Add `INLINEABLE` pragmas to `bitmaskWithRejection*` functions - Support GHC-9.0 ------------------------------------------------------------------- Tue Jul 7 11:19:12 UTC 2020 - psimons@suse.com - Update splitmix to version 0.1. # 0.1 - Drop `random` dependency unconditionally. https://github.com/phadej/splitmix/issues/34 ------------------------------------------------------------------ Tue Jun 9 09:53:40 UTC 2020 - psimons@suse.com - Update splitmix to version 0.0.5. - Add `nextInteger` - Use smaller range in `bitmaskWithRejection32` and `64`, when upper bound is 2^n - 1. This changes generated values when they were on the boundary. ------------------------------------------------------------------- Thu Feb 27 14:17:58 UTC 2020 - psimons@suse.com - Update splitmix to version 0.0.4. - Add `bitmaskWithRejection32'` and `bitmaskWithRejection64'` which generate numbers in closed range `[0, n]`. - Unticked variants generate in closed-open range `[0, n)`. ------------------------------------------------------------------- Fri Nov 8 16:14:48 UTC 2019 - Peter Simons - Drop obsolete group attributes. ------------------------------------------------------------------- Wed Jul 31 02:03:22 UTC 2019 - psimons@suse.com - Update splitmix to version 0.0.3. - Add `System.Random.SplitMix32` module - Add `bitmaskWithRejection32` and `bitmaskWithRejection64` module - Add `nextWord32`, `nextTwoWord32` and `nextFloat` - Add `random` flag, dropping dependency on `random` (breaks things, e.g. `QuickCheck`, when disabled). ------------------------------------------------------------------- Thu Mar 28 11:08:30 UTC 2019 - psimons@suse.com - Add splitmix at version 0.0.2.