Skip to content

Commit

Permalink
Release v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMaglione committed Aug 13, 2021
1 parent 8f48d2f commit 30140ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# v0.0.10
# v0.0.10 - 13 August 2021

- Released introduction to [**Practical Functional Programming**](https://www.sandromaglione.com/practical-functional-programming-step-by-step-haskell-typescript-dart-part-1/)
- Completed `StateAsync` type implementation, documentation, and testing
- Fixed problem with `Alt` typeclass ([#21](https://github.com/SandroMaglione/fpdart/issues/21))
- Added `call` method to more easily chain functions in `Monad` and `Monad2`

# v0.0.9 - 3 August 2021

Expand All @@ -9,7 +12,7 @@
- [**Chain functions using Option type – Functional Programming**](https://www.sandromaglione.com/chain-functions-using-option-type-functional-programming/)
- Added `toJson` and `fromJson` methods to `Option` to use [`json_serializable`](https://pub.dev/packages/json_serializable) to convert `Option` type _to_ and _from_ Json (using `@JsonSerializable`)
- Added functional extension methods on `Map`
- Added composable `Predicate` type (and `&`, or `|`, not `~`, xor `^`) [#18](https://github.com/SandroMaglione/fpdart/issues/18)
- Added composable `Predicate` type (and `&`, or `|`, not `~`, xor `^`) ([#18](https://github.com/SandroMaglione/fpdart/issues/18))

# v0.0.8 - 13 July 2021

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Would you like to know more about functional programming, fpdart, and how to use
3. [**Pure Functional app in Flutter – Pokemon app using fpdart and Functional Programming**](https://www.sandromaglione.com/pure-functional-app-in-flutter-using-fpdart-functional-programming/)
4. [**Functional Programming Option type – Introduction**](https://www.sandromaglione.com/functional-programming-option-type-tutorial/)
5. [**Chain functions using Option type – Functional Programming**](https://www.sandromaglione.com/chain-functions-using-option-type-functional-programming/)
6. [**Practical Functional Programming - Part 1**](https://www.sandromaglione.com/practical-functional-programming-step-by-step-haskell-typescript-dart-part-1/)

## 🎯 Types

Expand Down Expand Up @@ -69,7 +70,7 @@ Would you like to know more about functional programming, fpdart, and how to use
```yaml
# pubspec.yaml
dependencies:
fpdart: ^0.0.9 # Check out the latest version
fpdart: ^0.0.10 # Check out the latest version
```
## ✨ Examples
Expand Down Expand Up @@ -282,6 +283,7 @@ In general, **any contribution or feedback is welcome** (and encouraged!).

## 📃 Versioning

- v0.0.10 - 13 August 2021
- v0.0.9 - 3 August 2021
- v0.0.8 - 13 July 2021
- v0.0.7 - 6 July 2021
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: fpdart
version: 0.0.9
version: 0.0.10
homepage: https://www.sandromaglione.com/
repository: https://github.com/SandroMaglione/fpdart
description: Functional programming in Dart and Flutter. All the main functional programming types and patterns fully documented, tested, and with examples.
author: Maglione Sandro <lass.maglio@gmail.com>

environment:
sdk: '>=2.13.0 <3.0.0'
sdk: ">=2.13.0 <3.0.0"

dev_dependencies:
lint: ^1.5.3
test: ^1.17.5
test: ^1.17.5

0 comments on commit 30140ca

Please sign in to comment.