Skip to content

Commit

Permalink
fpdart 2.0.0-dev.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMaglione committed Mar 28, 2024
1 parent 4c893ef commit 82d1ed6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 9 additions & 0 deletions packages/fpdart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v2.0.0-dev.2 - 29 March 2024
- Complete `Option` and `Either` API
- Execute `Effect` using `provide` (with `Null` as dependency)
- Fixed implementation of running `Effect` and catching `Cause`
- Added interruption (`Cause.Interrupted`)
- `Deferred`
- `Context`
- New methods (`raceAll`, `race`, `delay`, `sleep`, `timeout`)

## v2.0.0-dev.1 - 23 March 2024
- Initial preview release of `fpdart` v2
- Refactoring to use `Effect` class
Expand Down
3 changes: 2 additions & 1 deletion packages/fpdart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Interested in what `fpdart` is and how it came to be?
## 💻 Installation

```shell
dart pub add fpdart:'^2.0.0'
dart pub add fpdart:'v2.0.0-dev.2'
```

## ✨ Examples
Expand Down Expand Up @@ -499,6 +499,7 @@ In general, **any contribution or feedback is welcome** (and encouraged!).

## 📃 Versioning

- v2.0.0-dev.2 - 29 March 2024
- v2.0.0-dev.1 - 23 March 2024

***
Expand Down
8 changes: 4 additions & 4 deletions packages/fpdart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: fpdart
description: >
Functional programming in Dart and Flutter.
All the main functional programming types and patterns fully documented, tested, and with examples.
version: 2.0.0-dev.1
Functional Effect System in Dart and Flutter.
Build composable, type safe, maintainable and testable apps with an extensive API fully tested and documented.
version: 2.0.0-dev.2
homepage: https://www.sandromaglione.com/
repository: https://github.com/SandroMaglione/fpdart
author: Maglione Sandro <lass.maglio@gmail.com>
Expand All @@ -21,5 +21,5 @@ dev_dependencies:
collection: ^1.18.0

screenshots:
- description: "Basic usage of fpdart Option, Either, TaskEither types."
- description: "Basic usage of fpdart Effect type."
path: example/screenshot_fpdart.png

0 comments on commit 82d1ed6

Please sign in to comment.