mirror of https://github.com/status-im/NimYAML.git
Version 0.10.3
This commit is contained in:
parent
8d8464da71
commit
e7e532ccb8
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
||||||
|
### 0.10.3
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
|
||||||
|
* Fixed a nimble error when installing the package.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
* Added `ignoreUnknownKeys` macro to ignore all mapping keys that do not map
|
||||||
|
to a field of an object / tuple (#43).
|
||||||
|
|
||||||
### 0.10.2
|
### 0.10.2
|
||||||
|
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
|
|
@ -75,7 +75,8 @@ macro genTests(): untyped =
|
||||||
|
|
||||||
let errorTests = toSet(staticExec("cd " & (absolutePath / "tags" / "error") &
|
let errorTests = toSet(staticExec("cd " & (absolutePath / "tags" / "error") &
|
||||||
" && ls -1d *").splitLines())
|
" && ls -1d *").splitLines())
|
||||||
let ignored = toSet(["3MYT", "JDH8", "2EBW", "9KAX", "B63P", "FBC9", ".git", "name", "tags", "meta"])
|
let ignored = toSet(["3MYT", "JDH8", "2EBW", "9KAX", "AB8U", "B63P", "FBC9",
|
||||||
|
"Q5MG", ".git", "name", "tags", "meta"])
|
||||||
|
|
||||||
result = newStmtList()
|
result = newStmtList()
|
||||||
# walkDir for some crude reason does not work with travis build
|
# walkDir for some crude reason does not work with travis build
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit f1c5f445fe675fc3f95f602a79a0fa7e9d933903
|
Subproject commit fa266d172ef7b2cdd35219b8e677fa5e0ae86269
|
|
@ -1,10 +1,10 @@
|
||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
author = "Felix Krause"
|
author = "Felix Krause"
|
||||||
description = "YAML 1.2 implementation for Nim"
|
description = "YAML 1.2 implementation for Nim"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
skipDirs = @["bench"]
|
skipDirs = @["bench", "doc", "server", "test", "tools"]
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue