2 Commits
1.0.1 ... 1.0.3

3 changed files with 8 additions and 4 deletions

View File

@ -1 +1 @@
const PTK_VERSION* = "1.0.1"
const PTK_VERSION* = "1.0.3"

View File

@ -144,6 +144,7 @@ proc edit(mark: var Mark): void =
# notes for this timeline mark.""")
close(tempFile)
tempFile = nil
discard os.execShellCmd "$EDITOR " & tempFileName & " </dev/tty >/dev/tty"

View File

@ -1,7 +1,6 @@
# Package
include "private/version.nim"
version = PTK_VERSION
version = "1.0.3"
author = "Jonathan Bernard"
description = "Personal Time Keeper"
license = "MIT"
@ -19,5 +18,9 @@ requires @[
"jester 0.4.1",
"https://git.jdb-labs.com/jdb/nim-lang-utils.git",
"https://git.jdb-labs.com/jdb/nim-cli-utils.git",
"https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2"
"https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2",
"https://git.jdb-labs.com/jdb/update-nim-package-version"
]
task updateVersion, "Update the version of this package.":
exec "update_nim_package_version ptk 'private/version.nim'"