We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05019d commit cf3d9d0Copy full SHA for cf3d9d0
src/bigwig.nim
@@ -1,4 +1,5 @@
1
import ./bigwigpkg/lib
2
+import ./bigwigpkg/version
3
import ./bigwigpkg/cli
4
import tables
5
import strformat
@@ -18,7 +19,7 @@ proc main*() =
18
19
var args = commandLineParams()
20
21
if len(args) == 0 or not (args[0] in dispatcher):
- stderr.write_line "\nCommands: "
22
+ stderr.write_line &"version: {bigwigVersion}\n\nCommands:"
23
for k, v in dispatcher:
24
echo &" {k:<13}: {v.description}"
25
if len(args) > 0 and (args[0] notin dispatcher) and args[0] notin @["-h", "-help"]:
src/bigwigpkg/version.nim
@@ -1,2 +1,2 @@
-const bigwigVersion* = "0.0.1"
+const bigwigVersion* = "0.0.2"
const bigwigGitCommit* = staticExec("git rev-parse --verify HEAD")
0 commit comments