* Add `state` on `Issue` to be able to query the state of an issue even if you only have a reference to this issue and don't have a reference to the context or issues table. This does not change the persisted format of the issue. On disk the state of an issue is still represented by it's location in the file hierarchy. * Refactored libpit to use zero_functional instead of sequtils.
31 lines
718 B
Nim
31 lines
718 B
Nim
# Package
|
|
|
|
version = "4.23.0"
|
|
author = "Jonathan Bernard"
|
|
description = "Personal issue tracker."
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
installExt = @["nim"]
|
|
bin = @["pit", "pit_api"]
|
|
|
|
# Dependencies
|
|
|
|
requires @[
|
|
"nim >= 1.4.0",
|
|
"docopt >= 0.6.8",
|
|
"jester >= 0.5.0",
|
|
"uuids >= 0.1.10",
|
|
"zero_functional"
|
|
]
|
|
|
|
# Dependencies from git.jdb-software.com/nim-jdb/packages
|
|
requires @[
|
|
"cliutils >= 0.6.4",
|
|
"langutils >= 0.4.0",
|
|
"timeutils >= 0.5.4",
|
|
"data_uri > 1.0.0",
|
|
"https://git.jdb-software.com/jdb/update-nim-package-version >= 0.2.0"
|
|
]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_nim_package_version pit 'src/pitpkg/cliconstants.nim'" |