diff --git a/pit.nimble b/pit.nimble index 0c7569b..8dd9ebb 100644 --- a/pit.nimble +++ b/pit.nimble @@ -1,6 +1,6 @@ # Package -version = "4.11.0" +version = "4.11.1" author = "Jonathan Bernard" description = "Personal issue tracker." license = "MIT" diff --git a/src/pit.nim b/src/pit.nim index 905fed0..22d3be6 100644 --- a/src/pit.nim +++ b/src/pit.nim @@ -70,6 +70,8 @@ proc formatIssue(ctx: CliContext, issue: Issue): string = if not issue.details.isEmptyOrWhitespace: result &= issue.details.strip.withColor(fgCyan) & "\n" + result &= termReset + proc formatSectionIssue(ctx: CliContext, issue: Issue, width: int, indent = "", verbose = false): string = diff --git a/src/pitpkg/version.nim b/src/pitpkg/version.nim index cf1b598..6718991 100644 --- a/src/pitpkg/version.nim +++ b/src/pitpkg/version.nim @@ -1 +1 @@ -const PIT_VERSION* = "4.11.0" \ No newline at end of file +const PIT_VERSION* = "4.11.1" \ No newline at end of file