From 96254f1900a59664acaf38ebd599ccc9716af30c Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sun, 22 Mar 2020 11:57:00 +0100 Subject: [PATCH] Fixes #80 --- CHANGELOG.md | 6 ++++++ config.nims | 4 ++-- yaml.nimble | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9398373..834486c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.13.1 + +Bugfixes: + + * Changed `nim tests` to `nim test` to make nim ci happy. + ## 0.13.0 Bugfixes: diff --git a/config.nims b/config.nims index 44d1709..d35a93d 100644 --- a/config.nims +++ b/config.nims @@ -3,7 +3,7 @@ task build, "Compile the YAML module into a library": --d:release setCommand "c", "yaml" -task tests, "Run all tests": +task test, "Run all tests": --r --verbosity:0 setCommand "c", "test/tests" @@ -77,4 +77,4 @@ task server, "Compile server daemon": task testSuiteEvents, "Compile the testSuiteEvents tool": --d:release - setCommand "c", "tools/testSuiteEvents" \ No newline at end of file + setCommand "c", "tools/testSuiteEvents" diff --git a/yaml.nimble b/yaml.nimble index ba89625..bc24c4a 100644 --- a/yaml.nimble +++ b/yaml.nimble @@ -1,6 +1,6 @@ # Package -version = "0.13.0" +version = "0.13.1" author = "Felix Krause" description = "YAML 1.2 implementation for Nim" license = "MIT"