update version info to allow new release on crates.io
This commit is contained in:
parent
6e232e82b7
commit
0abe44d3a0
3 changed files with 25 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "randical"
|
name = "randical"
|
||||||
version = "1.6.180"
|
version = "1.6.1803"
|
||||||
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
24
README.md
24
README.md
|
@ -5,7 +5,7 @@ random values of varying types, with uniform distribution. See below for usage a
|
||||||
|
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Radical Random Value Generator 1.6180
|
Radical Random Value Generator 1.61803
|
||||||
|
|
||||||
Generates arbitrary numbers of uniformly distributed random values.
|
Generates arbitrary numbers of uniformly distributed random values.
|
||||||
|
|
||||||
|
@ -92,3 +92,25 @@ unfair coin is heads (0.834424540129461)
|
||||||
unfair coin is heads (0.5440078767522896)
|
unfair coin is heads (0.5440078767522896)
|
||||||
unfair coin is heads (0.615928198757337)
|
unfair coin is heads (0.615928198757337)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- simulate a *Sliding Doors*-style garden of forking paths alternate timeline for Ferris Bueller's
|
||||||
|
presence or absence on that fateful day:
|
||||||
|
|
||||||
|
```text
|
||||||
|
$ for i in {1..5} ; do echo "----" ; echo "Bueller? Bueller?" ; randical --buel ; done
|
||||||
|
----
|
||||||
|
Bueller? Bueller?
|
||||||
|
Here.
|
||||||
|
----
|
||||||
|
Bueller? Bueller?
|
||||||
|
Um, he's sick. My best friend's sister's boyfriend's brother's girlfriend heard from this guy who knows this kid who's going with the girl who saw Ferris pass out at 31 Flavors last night. I guess it's pretty serious.
|
||||||
|
----
|
||||||
|
Bueller? Bueller?
|
||||||
|
Here.
|
||||||
|
----
|
||||||
|
Bueller? Bueller?
|
||||||
|
Um, he's sick. My best friend's sister's boyfriend's brother's girlfriend heard from this guy who knows this kid who's going with the girl who saw Ferris pass out at 31 Flavors last night. I guess it's pretty serious.
|
||||||
|
----
|
||||||
|
Bueller? Bueller?
|
||||||
|
Um, he's sick. My best friend's sister's boyfriend's brother's girlfriend heard from this guy who knows this kid who's going with the girl who saw Ferris pass out at 31 Flavors last night. I guess it's pretty serious.
|
||||||
|
```
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
1.6180
|
1.61803
|
||||||
|
|
Loading…
Reference in a new issue