Skip to content

Commit 8b4b47b

Browse files
Merge 0a9903a into master
2 parents 51e8a3d + 0a9903a commit 8b4b47b

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Publish (dry run)
5959
run: dart pub publish --dry-run
6060

61-
merge-to-staging:
61+
to-staging:
6262
needs: [test, analyze]
6363
runs-on: ubuntu-latest
6464
steps:

.pubignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
test/
22
todo.txt
3-
.github
3+
.github/
44
README.md.bak

CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
# 0.7.0
1+
# 0.7.0+1
22

33
- Added Xoshiro256**
44

55
- fixed: for 64-bit generators `.nextInt32` was throwing an assertion error
66
instead of returning 0 as a random result
77

8-
# 0.6.4+2
9-
10-
- Updated documentation
11-
12-
- Minor improvements
138

149
# 0.6.0
1510

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ only comparison to `nextRaw32` is "apples-to-apples".
176176
|| | `Splitmix64` | [splitmix64](https://prng.di.unimi.it/splitmix64.c) | 2015 |
177177
|| | `Xorshift128p` | [xorshift128+ v2](https://arxiv.org/abs/1404.0390) | 2015 |
178178
|| | `Mulberry32` | [mulberry32](https://git.io/JmoUq) | 2017 |
179-
||| `Xoshiro128pp` | [xoshiro128++ 1.0](https://prng.di.unimi.it/xoshiro128plusplus.c) | 2019 | `Qrandom`, `Drandom` |
180179
|| | `Xoshiro256ss` | [xoshiro256** 1.0](https://xoshiro.di.unimi.it/xoshiro256starstar.c) | 2018 | |
180+
||| `Xoshiro128pp` | [xoshiro128++ 1.0](https://prng.di.unimi.it/xoshiro128plusplus.c) | 2019 | `Qrandom`, `Drandom` |
181181
|| | `Xoshiro256pp` | [xoshiro256++ 1.0](https://prng.di.unimi.it/xoshiro256plusplus.c) | 2019 | |
182182

183183

@@ -254,5 +254,5 @@ JavaScript doesn't even have any upper bits of `uint64_t`. But `double`s are the
254254
same type everywhere, and their random values will be the same.
255255

256256
Testing is done in the GitHub Actions cloud on **Windows**, **Ubuntu**, and
257-
*macOS** in **VM** and **Node.js** modes.
257+
**macOS** in **VM** and **Node.js** modes.
258258

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: xrandom
22
description: "Random number generators library focused on the consistency,
33
performance and reproducibility"
4-
version: 0.7.0
4+
version: 0.7.0+1
55
homepage: https://github.com/rtmigo/xrandom
66

77
environment:

0 commit comments

Comments
 (0)