Skip to content

Commit

Permalink
updated CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMaglione committed Mar 4, 2023
1 parent 6c67afc commit e0effd6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h3 align="center">
<a href="https://github.com/SandroMaglione/fpdart">
<img src="./example/screenshots/screenshot_fpdart.png" width="500" />
<img src="https://raw.githubusercontent.com/SandroMaglione/fpdart/main/example/screenshots/screenshot_fpdart.png" width="500" />
</a>
</h3>

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e0effd6

Please sign in to comment.