Compare commits

..

No commits in common. "main" and "4.29.0" have entirely different histories.
main ... 4.29.0

3 changed files with 2 additions and 6 deletions

View File

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

View File

@ -1,4 +1,4 @@
const PIT_VERSION* = "4.29.1"
const PIT_VERSION* = "4.29.0"
const USAGE* = """Usage:
pit ( new | add) <summary> [<state>] [options]

View File

@ -19,7 +19,6 @@ type
lastUpdatedAt*: DateTime
archivedAt*: Option[DateTime]
tags*: seq[string]
parent*: Option[string]
priority*: Option[string]
project*: Option[string]
milestone*: Option[string]
@ -46,9 +45,6 @@ proc toServerTask(i: Issue): ServerTask =
lastUpdatedAt:
if i.hasProp("last-updated"): parseIso8601(i["last-updated"])
else: now(),
parent:
if i.hasProp("parent"): some(i["parent"])
else: none[string](),
priority:
if i.hasProp("priority"): some(i["priority"])
else: none[string](),