All Versions
8
Latest Version
Avg Release Cycle
38 days
Latest Release
1633 days ago

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 and encodeQuotedDocuments 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).
  • v1.0.1.0 Changes

    October 15, 2019

    โž• Added

    • encodeQuoted: Encodes with all keys/strings quoted
    • encodeQuotedDocuments: 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