Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.85 KB

CHANGELOG.md

File metadata and controls

44 lines (32 loc) · 1.85 KB

Changelog

The format is based on Keep a Changelog.

Unreleased - ReleaseDate

0.3.1 - 2021-09-14

Fixes

  • Sane default formatting for arrays

0.3.0 - 2021-09-13

  • Added support for TOML 1.0, with one functional caveat and one format-preserving caveat
  • Added Item::into_value
  • Changed Table and InlineTable to be more Map-like
  • Expanded support in TableLike
  • Added toml-rs-compatible API via the toml_edit::easy module for when developers want to ensure consistency between format-preserving and general TOML work, with one caveat.
  • Exposed more control over formatting, with ability to modify any key or value whitespace.
  • Fixed it so we preserve formatting on dotted keys in standard table headers
  • Dropped chrono dependency

This release was sponsored by Futurewei

0.2.1 - 2021-06-07

  • Added Table::decor. #97
  • Added IterMut for Table. #100
  • Added Table::get_mut. #106
  • Updated combine to 4.5. #107

0.2.0 - 2020-06-18

  • Added format preserving mutation functions for Array. #88

Breaking

  • array.push now returns a Result.