Compare commits

..

1 Commits
4.9.1 ... 4.9.2

3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "4.9.1"
version = "4.9.2"
author = "Jonathan Bernard"
description = "Personal issue tracker."
license = "MIT"

View File

@ -170,6 +170,7 @@ proc loadIssueById*(tasksDir, id: string): Issue =
raise newException(KeyError, "cannot find issue for id: " & id)
proc store*(issue: Issue, withComments = false) =
discard existsOrCreateDir(issue.filePath.parentDir)
writeFile(issue.filepath, toStorageFormat(issue, withComments))
proc store*(tasksDir: string, issue: Issue, state: IssueState, withComments = false) =

View File

@ -1 +1 @@
const PIT_VERSION* = "4.9.1"
const PIT_VERSION* = "4.9.2"