Skip to content

Commit 30140ca

Browse files
Release v0.0.10
1 parent 8f48d2f commit 30140ca

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# v0.0.10
1+
# v0.0.10 - 13 August 2021
22

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

58
# v0.0.9 - 3 August 2021
69

@@ -9,7 +12,7 @@
912
- [**Chain functions using Option type – Functional Programming**](https://www.sandromaglione.com/chain-functions-using-option-type-functional-programming/)
1013
- 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`)
1114
- Added functional extension methods on `Map`
12-
- Added composable `Predicate` type (and `&`, or `|`, not `~`, xor `^`) [#18](https://github.com/SandroMaglione/fpdart/issues/18)
15+
- Added composable `Predicate` type (and `&`, or `|`, not `~`, xor `^`) ([#18](https://github.com/SandroMaglione/fpdart/issues/18))
1316

1417
# v0.0.8 - 13 July 2021
1518

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Would you like to know more about functional programming, fpdart, and how to use
3939
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/)
4040
4. [**Functional Programming Option type – Introduction**](https://www.sandromaglione.com/functional-programming-option-type-tutorial/)
4141
5. [**Chain functions using Option type – Functional Programming**](https://www.sandromaglione.com/chain-functions-using-option-type-functional-programming/)
42+
6. [**Practical Functional Programming - Part 1**](https://www.sandromaglione.com/practical-functional-programming-step-by-step-haskell-typescript-dart-part-1/)
4243

4344
## 🎯 Types
4445

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

283284
## 📃 Versioning
284285

286+
- v0.0.10 - 13 August 2021
285287
- v0.0.9 - 3 August 2021
286288
- v0.0.8 - 13 July 2021
287289
- v0.0.7 - 6 July 2021

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: fpdart
2-
version: 0.0.9
2+
version: 0.0.10
33
homepage: https://www.sandromaglione.com/
44
repository: https://github.com/SandroMaglione/fpdart
55
description: Functional programming in Dart and Flutter. All the main functional programming types and patterns fully documented, tested, and with examples.
66
author: Maglione Sandro <lass.maglio@gmail.com>
77

88
environment:
9-
sdk: '>=2.13.0 <3.0.0'
9+
sdk: ">=2.13.0 <3.0.0"
1010

1111
dev_dependencies:
1212
lint: ^1.5.3
13-
test: ^1.17.5
13+
test: ^1.17.5

0 commit comments

Comments
 (0)