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
|
||||
|
||||
Bugfixes:
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue