Now storing package metadata as strings.
h3rald h3rald@h3rald.com
Tue, 19 May 2026 14:33:33 +0200
4 files changed,
12 insertions(+),
7 deletions(-)
M
.gitignore
→
.gitignore
@@ -8,3 +8,6 @@ hastysite
hastysite.exe HastySite_UserGuide.htm .DS_Store +nimble.develop +nimble.paths +nimbledeps
A
config.nims
@@ -0,0 +1,4 @@
+# begin Nimble config (version 2) +when withDir(thisDir(), system.fileExists("nimble.paths")): + include "nimble.paths" +# end Nimble config
M
hastysite.nimble
→
hastysite.nimble
@@ -1,16 +1,14 @@
-import hastysitepkg/config - # Package -version = pkgVersion -author = pkgAuthor -description = pkgDescription +version = "1.4.1" +author = "Fabio Cevasco" +description = "A small but powerful static site generator" license = "MIT" bin = @["hastysite"] installDirs = @["minpkg", "hastysitepkg"] # Deps requires "nim >= 2.2.0 & <= 3.0.0" -requires "min >= 0.45.0" +requires "min >= 0.47.0" requires "checksums >= 0.2.1" requires "hastyscribe >= 2.1.0" requires "mustache >= 0.4.3"
M
hastysitepkg/config.nim
→
hastysitepkg/config.nim
@@ -1,5 +1,5 @@
const pkgName* = "HastySite" - pkgVersion* = "1.4.0" + pkgVersion* = "1.4.1" pkgDescription* = "A small but powerful static site generator" pkgAuthor* = "Fabio Cevasco"