Skip to content

Releases: zonyitoo/rust-ini

v0.15.1

12 Feb 16:45
Compare
Choose a tag to compare

Fixed BUGs

  1. #63 Properties::insert should replace instead of append with specified key
    • Use append for appending values with the same key

v0.15.0

12 Feb 14:34
Compare
Choose a tag to compare

Features

  1. Support duplicated sections and property keys
  2. Preserve insert order by default
  3. Support case insensitive section and property keys
    • Enable it by feature case-insensitive

Breaking Changes

  1. Removed feature preserve_order, because it is set as default.
  2. Renamed feature inline_comment to inline-comment

v0.14.0

12 Feb 14:38
Compare
Choose a tag to compare

Features

  1. Preserve insert order for Properties
    • Enable it by feature preserve_order

Fixed BUGs

  1. *NIX systems' default line separator is \n, and Windows is \r\n
    • Customize it by WriteOption::line_separator

Breaking Changes

  1. Removed support of inline comments, which is not supported by most standards
    • Re-enable it by feature inline_comment