Fixed string escapes when printed.
h3rald h3rald@h3rald.com
Sat, 13 Nov 2021 22:00:57 +0100
2 files changed,
8 insertions(+),
1 deletions(-)
M
minpkg/core/parser.nim
→
minpkg/core/parser.nim
@@ -569,7 +569,7 @@ return $a.boolVal
of minSymbol: return a.symVal of minString: - return "\"$1\"" % a.strVal.replace("\"", "\\\"") + return "\""&a.strVal.escapeJsonUnquoted&"\"" of minInt: return $a.intVal of minFloat:
M
next-release.md
→
next-release.md
@@ -1,4 +1,11 @@
### BREAKING CHANGES * Runtime checks (expectations) must now be manually activated by specifying `-d` or `--dev`. + +### New Features + * Added **dev?** symbol to check if we are running in development mode. + +### Fixes and Improvements + +* string values are now properly escaped when printed.