diff --git a/CHANGELOG.md b/CHANGELOG.md index 67d8adc..f20a46f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +### 0.11.0 + +Bugfixes: + + * Made it work with Nim 0.19.0 + +NimYAML 0.11.0 is unlikely to work with older Nim versions. + +## 0.10.4 + +Bugfixes: + + * Made it work with Nim 0.18.0 + ### 0.10.3 Bugfixes: diff --git a/yaml.nimble b/yaml.nimble index 69f71fe..729a19c 100644 --- a/yaml.nimble +++ b/yaml.nimble @@ -1,6 +1,6 @@ # Package -version = "0.10.3" +version = "0.11.0" author = "Felix Krause" description = "YAML 1.2 implementation for Nim" license = "MIT" @@ -8,4 +8,4 @@ skipDirs = @["bench", "doc", "server", "test", "tools"] # Dependencies -requires "nim >= 0.17.0" +requires "nim >= 0.19.0"