All Versions
8
Latest Version
Avg Release Cycle
38 days
Latest Release
1633 days ago
Changelog History
Changelog History
-
v1.1.0.0 Changes
June 25, 2020๐ Changed
- Every change to the YAML output format will now result in a bump of B in A.B.C.D to more closely follow the Haskell PVP. B will be bumped in case of small changes and bug fixes, and A if a change is expected to cause problems with common YAML 1.1 or 1.2 decoders.
encodeDocuments
andencodeQuotedDocuments
now output a leading---
-
v1.0.6.0 Changes
February 27, 2020๐ Changed
Don't quote simple strings containing spaces, e.g: hello world
Single-quote dates (like '2020-02-27') and bools ('true' / 'false')
-
v1.0.5.0 Changes
November 30, 2019๐ Fixed
- Encode empty objects as "{}" rather than ""
-
v1.0.4.0 Changes
November 06, 2019๐ Fixed
- Quote date strings (e.g. "2038-01-19")
-
v1.0.3.0 Changes
November 03, 2019๐ Fixed
- Encode empty lists as "[]" rather than "\n -"
-
v1.0.2.0 Changes
October 17, 2019๐ Changed
- Only quote YAML 1.2 boolean strings "true" and "false" (upper or
lowercase), not "on", "off", "yes", "y", "no", "n" (if you want to quote
these strings, use
encodeQuoted
).
- Only quote YAML 1.2 boolean strings "true" and "false" (upper or
lowercase), not "on", "off", "yes", "y", "no", "n" (if you want to quote
these strings, use
-
v1.0.1.0 Changes
October 15, 2019โ Added
encodeQuoted
: Encodes with all keys/strings quotedencodeQuotedDocuments
: Encodes documents with all keys/strings quoted
๐ Changed
Simple strings (scalars) are now written unquoted.
Multi-line strings (with trailing newlines) are now written as literal block scalars.
-
v1.0.0.0 Changes
September 30, 2019๐ Initial version