diff --git a/pit.nimble b/pit.nimble index 380f45b..f9e8293 100644 --- a/pit.nimble +++ b/pit.nimble @@ -1,8 +1,6 @@ # Package -include "src/pitpkg/version.nim" - -version = PIT_VERSION +version = "4.6.2" author = "Jonathan Bernard" description = "Personal issue tracker." license = "MIT" @@ -11,8 +9,17 @@ bin = @["pit", "pit_api"] # Dependencies -requires @[ "nim >= 0.19.0", "docopt 0.6.8", "jester 0.4.1", "uuids 0.1.10" ] +requires @[ + "nim >= 0.19.0", + "docopt 0.6.8", + "jester 0.4.1", + "uuids 0.1.10", -requires "https://git.jdb-labs.com/jdb/nim-cli-utils.git >= 0.6.1" -requires "https://git.jdb-labs.com/jdb/nim-lang-utils.git >= 0.4.0" -requires "https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.4.0" + "https://git.jdb-labs.com/jdb/nim-cli-utils.git >= 0.6.1", + "https://git.jdb-labs.com/jdb/nim-lang-utils.git >= 0.4.0", + "https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.4.0", + "https://git.jdb-labs.com/jdb/update-nim-package-version" +] + +task updateVersion, "Update the version of this package.": + exec "update_nim_package_version pit 'src/pitpkg/version.nim'" diff --git a/src/pitpkg/version.nim b/src/pitpkg/version.nim index eb113fd..3fc14c9 100644 --- a/src/pitpkg/version.nim +++ b/src/pitpkg/version.nim @@ -1 +1 @@ -const PIT_VERSION* = "4.6.1" +const PIT_VERSION* = "4.6.2" \ No newline at end of file