From e0effd6fef8367a26e7d7c2d5db3b15173a53996 Mon Sep 17 00:00:00 2001 From: SandroMaglione Date: Sat, 4 Mar 2023 12:20:46 +0100 Subject: [PATCH] updated CHANGELOG and README --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 5 +++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e381e66..d25842f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# v0.5.0 - 4 March 2023 +- Updates to `Option` type [#92](https://github.com/SandroMaglione/fpdart/pull/92) [⚠️ **BREAKING CHANGE**] + - Added `const factory` constructor for `None` (fixes [#95](https://github.com/SandroMaglione/fpdart/issues/95)) + - Removed `Alt` and `Foldable` type classes, the following methods are not available anymore + - `foldLeft` + - `foldRight` + - `foldMap` + - `foldRightWithIndex` + - `foldLeftWithIndex` + - `length` + - `any` + - `all` + - `concatenate` + - `plus` + - `prepend` + - `append` +- Updated examples and fixed lint warnings [#93](https://github.com/SandroMaglione/fpdart/pull/93) (thanks to [tim-smart](https://github.com/tim-smart) 🎉) + # v0.4.1 - 25 February 2023 - New methods for `Option` type (thanks to [tim-smart](https://github.com/tim-smart) 🎉) - `flatMapNullable` diff --git a/README.md b/README.md index d6a65b44..3081d158 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- +

@@ -100,7 +100,7 @@ Check out also this series of articles about functional programming with `fpdart ```yaml # pubspec.yaml dependencies: - fpdart: ^0.4.1 # Check out the latest version + fpdart: ^0.5.0 # Check out the latest version ``` ## ✨ Examples @@ -355,6 +355,7 @@ In general, **any contribution or feedback is welcome** (and encouraged!). ## 📃 Versioning +- **v0.5.0** - 4 March 2023 - v0.4.1 - 25 February 2023 - **v0.4.0** - 16 December 2022 - **v0.3.0** - 11 October 2022