Modifiws version, added changelog.
h3rald h3rald@h3rald.com
Sat, 13 Jun 2026 08:06:15 +0000
8 files changed,
20 insertions(+),
7 deletions(-)
M
.conver/history.txt
→
.conver/history.txt
@@ -0,0 +1,1 @@
+2026-06-13: +B000 # Re-releasing using ConVer
A
CHANGELOG.md
@@ -0,0 +1,9 @@
+## Changelog + +### vB00-0 (2026-06-13) + +* Re-released using ConVer. + +### v1.0.0 (2021-11-09) + +* Initial release.
M
src/pls.nim
→
src/pls.nim
@@ -12,7 +12,7 @@
type ConfigParseError = ref object of ValueError type RuntimeError = ref object of ValueError -let USAGE* = """$1 v$2 - $3 +let USAGE* = """$1 $2 - $3 (c) 2026 $4 Usage:@@ -32,7 +32,7 @@ --full, -f If -a or -t are specified, display all properties for items.
If -d is specified, outputs debug information for configuration parsing. Otherwise, print additional information when executing commands. --version, -v Displays the version of the application. -""" % [pkgTitle, pkgVersion, pkgDescription, pkgAuthor] +""" % [pkgTitle, pkgVersionLabel, pkgDescription, pkgAuthor] # PEG strings used when parsing the configuration file. let PEG_PLACEHOLDER* = peg"'{{' {[a-zA-Z0-9._-]+} '}}'"
M
src/plspkg/config.nim
→
src/plspkg/config.nim
@@ -1,5 +1,6 @@
const - pkgTitle* = "pls" - pkgVersion* = "B00-0" - pkgAuthor* = "Fabio Cevasco" - pkgDescription* = "A polite but determined task runner." + pkgTitle* = "pls" + pkgVersion* = "B000" + pkgVersionLabel* = "vB00-0" + pkgAuthor* = "Fabio Cevasco" + pkgDescription* = "A polite but determined task runner."