From f955bade0804fda697a96c617f5641d6ef79180b Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Wed, 13 Sep 2023 18:26:38 +0200 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af15ea2..f5518c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 0.12.1 (2023-09-13) + +### Added + +- Generally added some documentation. +- Added `CharMap#{size,entryCount}` to get the size of a map. +- Added `CharMap#copy` to create a (mapped) copy of a map. +- Added `StringSet#{is{Proper,}{Subset,Superset}Of,isDisjointWith}` for set relations. +- Added `UnicodeSet#{is{Proper,}{Subset,Superset}Of,isDisjointWith}` for set relations. +- Added `UnicodeSet#{wordSets,maximum}` for a more ergonomic API. +- `UnicodeSet#{equals,union,intersect,without}` allow `CharSet`s. + +### Fixed + +- Made `StringSet#words` private. This should have never been public in the first place. +- Made `StringSet.empty` readonly. +- Removed ignored `range` parameter from `CharMap#entries`. +- Fixed some bugs in `StringSet#{equals,union}`. +- Removed `StringSet#{filter,map}`. These methods should have never been public in the first place. + ## 0.12.0 (2023-09-04) ### Breaking changes