Updated version number, minor fixes.
h3rald h3rald@h3rald.com
Wed, 17 Jun 2020 16:37:30 +0200
5 files changed,
5 insertions(+),
7 deletions(-)
M
core/consts.nim
→
core/consts.nim
@@ -1,6 +1,6 @@
const pkgName* = "min" - pkgVersion* = "0.19.6" + pkgVersion* = "0.20.0" pkgAuthor* = "Fabio Cevasco" pkgDescription* = "A tiny concatenative programming language and shell."
M
core/interpreter.nim
→
core/interpreter.nim
@@ -11,8 +11,8 @@ scope,
parser type - MinTrappedException* = ref object of Exception - MinRuntimeError* = ref object of Exception + MinTrappedException* = ref object of CatchableError + MinRuntimeError* = ref object of CatchableError data*: MinValue proc raiseRuntime*(msg: string, data: MinValue) {.extern:"min_exported_symbol_$1".}=
M
lib/min_http.nim
→
lib/min_http.nim
@@ -16,7 +16,7 @@ result = newDict(i.scope)
for k, v in headers: result = i.dset(result, k, v.newVal) -type MinServerExit = ref object of Exception +type MinServerExit = ref object of CatchableError # Http
M
min.nimble
→
min.nimble
@@ -22,9 +22,7 @@ # Tasks
const compile = "nim c -d:release" - linux_x86 = "--cpu:i386 --os:linux" linux_x64 = "--cpu:amd64 --os:linux" - linux_arm = "--cpu:arm --os:linux" windows_x64 = "--cpu:amd64 --os:windows" macosx_x64 = "" parallel = "--parallelBuild:1 --verbosity:3"