From e7e532ccb8985f7d356e9c971d739654b0782bff Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Wed, 20 Sep 2017 19:04:57 +0200 Subject: [PATCH] Version 0.10.3 --- CHANGELOG.md | 11 +++++++++++ test/tparser.nim | 3 ++- test/yaml-test-suite | 2 +- yaml.nimble | 4 ++-- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e5b5a2..67d8adc 100644 --- a/CHANGELOG.md +++ b/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 Bugfixes: diff --git a/test/tparser.nim b/test/tparser.nim index 0295975..e7ec63e 100644 --- a/test/tparser.nim +++ b/test/tparser.nim @@ -75,7 +75,8 @@ macro genTests(): untyped = let errorTests = toSet(staticExec("cd " & (absolutePath / "tags" / "error") & " && 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() # walkDir for some crude reason does not work with travis build diff --git a/test/yaml-test-suite b/test/yaml-test-suite index f1c5f44..fa266d1 160000 --- a/test/yaml-test-suite +++ b/test/yaml-test-suite @@ -1 +1 @@ -Subproject commit f1c5f445fe675fc3f95f602a79a0fa7e9d933903 +Subproject commit fa266d172ef7b2cdd35219b8e677fa5e0ae86269 diff --git a/yaml.nimble b/yaml.nimble index 3f8b502..69f71fe 100644 --- a/yaml.nimble +++ b/yaml.nimble @@ -1,10 +1,10 @@ # Package -version = "0.10.2" +version = "0.10.3" author = "Felix Krause" description = "YAML 1.2 implementation for Nim" license = "MIT" -skipDirs = @["bench"] +skipDirs = @["bench", "doc", "server", "test", "tools"] # Dependencies