Skip to content

Commit 9f2adb0

Browse files
committed
v0.4
1 parent cf8fa90 commit 9f2adb0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ I got the idea of reversing the generators from several places, after I had to b
3131
<dependency>
3232
<groupId>ro.derbederos</groupId>
3333
<artifactId>untwist</artifactId>
34-
<version>0.3</version>
34+
<version>0.4</version>
3535
</dependency>
3636
```
3737
#### Gradle dependency
3838
```groovy
39-
compile 'ro.derbederos:untwist:0.3'
39+
compile 'ro.derbederos:untwist:0.4'
4040
```
4141

4242
Enjoy using them!

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>ro.derbederos</groupId>
2424
<artifactId>untwist</artifactId>
25-
<version>0.4-SNAPSHOT</version>
25+
<version>0.4</version>
2626

2727
<name>untwist</name>
2828
<description>Java 8+ collection of PRNG's from .NET, FreePascal, TurboPascal, Python.</description>

samples/mt-rand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
// https://github.com/php/php-src/blob/master/ext/standard/mt_rand.c#L217
23
echo mt_getrandmax(), "\n";
34
mt_srand(1234567890, MT_RAND_MT19937);
45
for ($i = 0; $i < 10; $i++) {

0 commit comments

Comments
 (0)