This commit is contained in:
Felix Krause 2020-03-22 11:57:00 +01:00
parent 9a81ae982f
commit 96254f1900
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
## 0.13.1
Bugfixes:
* Changed `nim tests` to `nim test` to make nim ci happy.
## 0.13.0
Bugfixes:

View File

@ -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"

View File

@ -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"