diff options
author | Andinus <andinus@nand.sh> | 2020-04-08 18:08:41 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-08 18:08:41 +0530 |
commit | ca23fd7f480ec209be1e23fe8397428a1e3c052e (patch) | |
tree | af20ae4c2dc9596f0b7237b0d7c363c2246b2e84 | |
parent | 5243a7c95529e712a028b8a7ec2a5d1a83b66cdc (diff) | |
download | grus-ca23fd7f480ec209be1e23fe8397428a1e3c052e.tar.gz |
Bump grus version to v0.3.0
-rw-r--r-- | README.org | 6 | ||||
-rw-r--r-- | grus.go | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/README.org b/README.org index 8574be5..1038dbc 100644 --- a/README.org +++ b/README.org @@ -44,6 +44,12 @@ These files will be checked by default (in order). - =/usr/share/dict/special/math= ** Examples #+BEGIN_SRC sh +# print grus version +grus version + +# print grus env +grus env + # unjumble word grus word diff --git a/grus.go b/grus.go index 24714c4..15f3e0e 100644 --- a/grus.go +++ b/grus.go @@ -14,7 +14,7 @@ func grus() { os.Exit(1) } - version := "v0.2.1" + version := "v0.3.0" // Print version if first argument is version. if os.Args[1] == "version" { |