mirror of https://github.com/status-im/NimYAML.git
Version 0.4.0
This commit is contained in:
parent
7063e72ace
commit
7dcc37c482
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,3 +1,17 @@
|
|||
### 0.4.0
|
||||
|
||||
Features:
|
||||
|
||||
* Added option to output YAML 1.1
|
||||
* Added benchmark for processing YAML input
|
||||
* Serialization for OrderedMap
|
||||
* Use !nim:field for object field names (#12)
|
||||
|
||||
Bugfixes:
|
||||
|
||||
* Code refactoring (#9, #10, #11, #13)
|
||||
* Some small improvements parsing and presenting
|
||||
|
||||
### 0.3.0
|
||||
|
||||
Features:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# NimYAML - YAML implementation for Nim
|
||||
|
||||
NimYAML is currently being developed. The current release 0.3.0 is not
|
||||
NimYAML is currently being developed. The current release 0.4.0 is not
|
||||
considered stable. See [the documentation](http://flyx.github.io/NimYAML/) for
|
||||
an overview of already available features.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Package
|
||||
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
author = "Felix Krause"
|
||||
description = "YAML 1.2 implementation for Nim"
|
||||
license = "MIT"
|
||||
|
|
Loading…
Reference in New Issue