Jonathan Bernard
a28f1540c4
This is a normal case when you go a really long time without syncing and the issues fall off of the pit time horizon. Also, bump versions to support Nim 2.x
30 lines
622 B
Nim
30 lines
622 B
Nim
# Package
|
|
|
|
version = "0.2.3"
|
|
author = "Jonathan Bernard"
|
|
description = "Synchronization tool between JDB pit and Trello."
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
bin = @["pit2trello"]
|
|
|
|
|
|
# Dependencies
|
|
|
|
requires @[
|
|
"nim >= 1.6.10",
|
|
"docopt",
|
|
"uuids >= 0.1.10",
|
|
"zero_functional"
|
|
]
|
|
|
|
# Dependencies from git.jdb-software.com/jdb/nim-packages
|
|
requires @[
|
|
"cliutils >= 0.9.1",
|
|
"pit >= 4.26.0",
|
|
"timeutils",
|
|
"update_nim_package_version"
|
|
]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_nim_package_version pit2trello 'src/pit2trellopkg/cliconstants.nim'"
|