diff --git a/CHANGELOG.md b/CHANGELOG.md index 03f3df0..870feb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ - [PR-25](https://github.com/leisim/dartx/pull/25) New `FileSystemEntity.withName(String newName)` to get a `File` with a different name - [PR-25](https://github.com/leisim/dartx/pull/25) New `FileSystemEntity.extension` to get the file extension - [PR-17](https://github.com/leisim/dartx/pull/17) `Callable.invoke()` is now marked as `Deprecated` in favour of darts `call()` method. It will not be removed though, until darts `.call()` methods gets [auto-completion](https://github.com/dart-lang/sdk/issues/39761). +- [PR-30](https://github.com/leisim/dartx/pull/30) New `Comparable.coerceIn()`, `Comparable.coerceAtLeast()` and `Comparable.coerceAtMost()` +- [PR-31](https://github.com/leisim/dartx/pull/31) Fixed `num.toBytes()` +- [PR-33](https://github.com/leisim/dartx/pull/33) Fixed `.thenBy()` and `.thenWith()` extensions for Lists + +### Breaking +- [PR-29](https://github.com/leisim/dartx/pull/29) `Iterable.windowed` - remove the required transform lambda ## 0.2.0 - Moved to `time.dart` library for time extensions @@ -14,7 +20,9 @@ - Fixed docs - Added `Function.curry()`, `Function.invoke()`, `Function.partial()` and `Function.flip()` - `'string'.reversed` now correctly handles grapheme clusters (like emoji) -- **Breaking:** `'string'.chars` now returns the grapheme clusters instead of `Rune`s + +### Breaking +- `'string'.chars` now returns the grapheme clusters instead of `Rune`s ## 0.1.1 - Bugfixes