mirror of https://github.com/status-im/NimYAML.git
Fixes #80
This commit is contained in:
parent
9a81ae982f
commit
96254f1900
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.13.1
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
|
||||||
|
* Changed `nim tests` to `nim test` to make nim ci happy.
|
||||||
|
|
||||||
## 0.13.0
|
## 0.13.0
|
||||||
|
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
|
|
@ -3,7 +3,7 @@ task build, "Compile the YAML module into a library":
|
||||||
--d:release
|
--d:release
|
||||||
setCommand "c", "yaml"
|
setCommand "c", "yaml"
|
||||||
|
|
||||||
task tests, "Run all tests":
|
task test, "Run all tests":
|
||||||
--r
|
--r
|
||||||
--verbosity:0
|
--verbosity:0
|
||||||
setCommand "c", "test/tests"
|
setCommand "c", "test/tests"
|
||||||
|
@ -77,4 +77,4 @@ task server, "Compile server daemon":
|
||||||
|
|
||||||
task testSuiteEvents, "Compile the testSuiteEvents tool":
|
task testSuiteEvents, "Compile the testSuiteEvents tool":
|
||||||
--d:release
|
--d:release
|
||||||
setCommand "c", "tools/testSuiteEvents"
|
setCommand "c", "tools/testSuiteEvents"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.13.0"
|
version = "0.13.1"
|
||||||
author = "Felix Krause"
|
author = "Felix Krause"
|
||||||
description = "YAML 1.2 implementation for Nim"
|
description = "YAML 1.2 implementation for Nim"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in New Issue