Add more info to the version string.

This commit is contained in:
Jonathan Bernard 2018-07-01 10:36:13 -05:00
parent e26b6eb01c
commit 4e771345ea
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Package
bin = @["db_migrate"]
version = "0.2.6"
version = "0.2.7"
author = "Jonathan Bernard"
description = "Simple tool to handle database migrations."
license = "BSD"

View File

@ -212,7 +212,7 @@ Options:
"""
# Parse arguments
let args = docopt(doc, version = "db-migrate 0.2.6")
let args = docopt(doc, version = "db-migrate (Nim) 0.2.7\nhttps://git.jdb-labs.com/jdb/db-migrate")
let exitErr = proc(msg: string): void =
fatal("db_migrate: " & msg)