diff --git a/.packages b/.packages index 208ae8e7..8467700d 100644 --- a/.packages +++ b/.packages @@ -3,7 +3,7 @@ # # For more info see: https://dart.dev/go/dot-packages-deprecation # -# Generated by pub on 2021-06-20 14:14:38.902319. +# Generated by pub on 2021-06-20 15:00:54.044686. _fe_analyzer_shared:file:///C:/Users/Sandro%20Maglione/AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/_fe_analyzer_shared-22.0.0/lib/ analyzer:file:///C:/Users/Sandro%20Maglione/AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/analyzer-1.7.0/lib/ args:file:///C:/Users/Sandro%20Maglione/AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/args-2.1.0/lib/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f823194..f0433d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ -# v0.0.5 +# v0.0.5 - 20 June 2021 - Completed `State` type implementation, documentation, and testing - Completed `Reader` type implementation, documentation, and testing - Completed `IO` type implementation, documentation, and testing +- Merged PR ([#2](https://github.com/SandroMaglione/fpdart/pull/2)) by [jacobaraujo7](https://github.com/jacobaraujo7) 🎉 + - Added `right` and `left` functions to create instance of `Either` + - Added `id` function (same as `identity`) + - Added `fold` method to `Either` (same as `match`) + - Added `bind` method to `Either` (same as `flatMap`) + - Added `bindFuture` method to `Either`, which returns `TaskEither` # v0.0.4 - 15 June 2021 diff --git a/README.md b/README.md index 66b73281..4943ddbc 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - + @@ -54,7 +54,7 @@ Fpdart is inspired by [fp-ts](https://gcanti.github.io/fp-ts/), [cats](https://t ```yaml # pubspec.yaml dependencies: - fpdart: ^0.0.4 # Check out the latest version + fpdart: ^0.0.5 # Check out the latest version ``` ## Examples @@ -263,6 +263,7 @@ In general, any contribution or feedback is welcome (and encouraged!). ## Versioning +- v0.0.5 - 20 June 2021 - v0.0.4 - 15 June 2021 - v0.0.3 - 13 June 2021 - v0.0.2 - 13 June 2021