From 3be365cf3a5bfd2898f3cb61eea65c6c6a0225c7 Mon Sep 17 00:00:00 2001 From: QEDK <1994constant@gmail.com> Date: Thu, 16 Nov 2023 20:11:00 +0400 Subject: [PATCH] feat: update docs --- CHANGELOG.md | 4 ++++ README.md | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e251ec4..dd049d5 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,5 +82,9 @@ - 1.0.0 - Dropped support for `ini::load()` - Updated tests +- 2.0.0 + - **BREAKING** Added Python-esque support for `:` as a delimiter. + - :new: Add support for case-sensitive maps with automatic handling under the hood. + - :hammer: Fixed buggy setters which went uncaught, to preserve case-insensitive nature. Older changelogs are preserved here, current changelog is present in [README.md](README.md). diff --git a/README.md b/README.md index e730c12..3d2d073 100755 --- a/README.md +++ b/README.md @@ -201,10 +201,6 @@ additional terms or conditions. ## 🆕 Changelog Old changelogs are in [CHANGELOG.md](CHANGELOG.md). -- 2.0.0 - - **BREAKING** Added Python-esque support for `:` as a delimiter. - - :new: Add support for case-sensitive maps with automatic handling under the hood. - - :hammer: Fixed buggy setters which went uncaught, to preserve case-insensitive nature. - 2.0.1 - Add first-class support for setting, loading and reading defaults - New available struct `IniDefault` for fast templating @@ -221,10 +217,14 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md). - Uses `CRLF` line endings for Windows files. - Bumps crate to 2021 edition. - Adds features to CI pipeline. -- 3.0.2 (**STABLE**) +- 3.0.2 - Adds support for multi-line key-value pairs. - Adds `async-std` feature for asynchronous file operations. - Some performance optimizations. +- 3.0.3 (**STABLE**) + - Add default empty line on empty strings. + - Feature to append to existing `Ini` objects. + - Minor lint fixes. ### 🔜 Future plans