Skip to content

Commit e62b3a3

Browse files
fpdart v0.1.0
1 parent ef7dea5 commit e62b3a3

4 files changed

Lines changed: 17 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v0.1.0 - 17 June 2022
2+
- Added `idFuture` and `identityFuture` methods ([#38](https://github.com/SandroMaglione/fpdart/pull/38) by [f-person](https://github.com/f-person) 🎉)
3+
- Added `mapBoth` method to `Tuple2` ([#30](https://github.com/SandroMaglione/fpdart/issues/30))
4+
- Fixed linting warnings
5+
- Fixed issue with `upsert` method for `Map` ([#37](https://github.com/SandroMaglione/fpdart/issues/37)) ⚠️
6+
- Minimum environment dart sdk to `2.16.0` ⚠️
7+
```yaml
8+
environment:
9+
sdk: ">=2.16.0 <3.0.0"
10+
```
111
# v0.0.14 - 31 January 2022
212
- Updated package linting to [`lints`](https://pub.dev/packages/lints)
313

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<img src="https://img.shields.io/github/license/SandroMaglione/fpdart?logo=github" />
99
<img src="https://img.shields.io/github/contributors-anon/SandroMaglione/fpdart" />
1010
<img src="https://img.shields.io/pub/v/fpdart?include_prereleases" />
11-
<img src="https://img.shields.io/badge/dart-v2.13.1-blue.svg" />
11+
<img src="https://img.shields.io/badge/dart-v2.17.3-blue.svg" />
1212
<a href="https://github.com/SandroMaglione">
1313
<img alt="GitHub: SandroMaglione" src="https://img.shields.io/github/followers/SandroMaglione?label=Follow&style=social" target="_blank" />
1414
</a>
@@ -27,7 +27,7 @@ Functional programming in Dart and Flutter. All the main functional programming
2727
2828
Fpdart is inspired by [fp-ts](https://gcanti.github.io/fp-ts/), [cats](https://typelevel.org/cats/typeclasses.html#type-classes-in-cats), and [dartz](https://github.com/spebbe/dartz).
2929

30-
**Note**: The package is still in early development. The API may change frequently and there will be many breaking changes. The documentation and testing is currently under development, but it is coming soon and fast. Follow my [**Twitter**](https://twitter.com/SandroMaglione) for daily updates.
30+
> **Note**: The API is still evolving and it may change. New documentation and testing is always ongoing. Follow my [**Twitter**](https://twitter.com/SandroMaglione) for updates
3131
3232
## 📖 Learn `functional programming` and `fpdart`
3333

@@ -75,7 +75,7 @@ Would you like to know more about functional programming, fpdart, and how to use
7575
```yaml
7676
# pubspec.yaml
7777
dependencies:
78-
fpdart: ^0.0.14 # Check out the latest version
78+
fpdart: ^0.1.0 # Check out the latest version
7979
```
8080
8181
## ✨ Examples
@@ -288,6 +288,7 @@ In general, **any contribution or feedback is welcome** (and encouraged!).
288288

289289
## 📃 Versioning
290290

291+
- **v0.1.0** - 17 June 2022
291292
- v0.0.14 - 31 January 2022
292293
- v0.0.13 - 26 January 2022
293294
- v0.0.12 - 24 October 2021

example/json_serializable/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ packages:
175175
path: "../.."
176176
relative: true
177177
source: path
178-
version: "0.0.11"
178+
version: "0.0.14"
179179
frontend_server_client:
180180
dependency: transitive
181181
description:
@@ -492,4 +492,4 @@ packages:
492492
source: hosted
493493
version: "3.1.0"
494494
sdks:
495-
dart: ">=2.13.0 <3.0.0"
495+
dart: ">=2.16.0 <3.0.0"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fpdart
2-
version: 0.0.14
2+
version: 0.1.0
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.

0 commit comments

Comments
 (0)