Skip to content

Commit

Permalink
v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
csoroiu committed Sep 1, 2017
1 parent cf8fa90 commit 9f2adb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ I got the idea of reversing the generators from several places, after I had to b
<dependency>
<groupId>ro.derbederos</groupId>
<artifactId>untwist</artifactId>
<version>0.3</version>
<version>0.4</version>
</dependency>
```
#### Gradle dependency
```groovy
compile 'ro.derbederos:untwist:0.3'
compile 'ro.derbederos:untwist:0.4'
```

Enjoy using them!
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>ro.derbederos</groupId>
<artifactId>untwist</artifactId>
<version>0.4-SNAPSHOT</version>
<version>0.4</version>

<name>untwist</name>
<description>Java 8+ collection of PRNG's from .NET, FreePascal, TurboPascal, Python.</description>
Expand Down
1 change: 1 addition & 0 deletions samples/mt-rand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
// https://github.com/php/php-src/blob/master/ext/standard/mt_rand.c#L217
echo mt_getrandmax(), "\n";
mt_srand(1234567890, MT_RAND_MT19937);
for ($i = 0; $i < 10; $i++) {
Expand Down

0 comments on commit 9f2adb0

Please sign in to comment.