Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Nov 1, 2021
1 parent 9d5e267 commit 4dca258
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.8.0

- [PR-136](https://github.com/leisim/dartx/pull/136) New: Multiple extensions for `Map`. `all()`, `any()`, `count()`, `filter()`, `filterKeys()`, `filterNot`, `filterValues`, `getOrElse()`, `mapEntries()`, `mapKeys()`, `mapValues()`, `maxBy()`, `maxWith()`, `minBy()`, `minWith`, `none()`, `toList()`, `toMap()`, `orEmpty()`
- [PR-127](https://github.com/leisim/dartx/pull/127) Improve: `sumBy` is now generic and works equally for `num`/`int`/`double`
- [PR-131](https://github.com/leisim/dartx/pull/131) Fix: `min()`/`max()` which returned the wrong item for reversed ordered lists
- [PR-133](https://github.com/leisim/dartx/pull/133) New: `plus()`/`minus()` and `plusOrNull`/`minusOrNull` to `num` which handle `null`
- [PR-138](https://github.com/leisim/dartx/pull/138) Improve: `Iterable.second` returns `T` instead of `T?`. Analog to `first`
- [PR-142](https://github.com/leisim/dartx/pull/142) Fix: `isUpperCase`/`isLowerCase` now threat only `[a-zA-Z]` chars as being uppercase

Also, all linting issues have been fixed and the README has been drastically improved. Thanks @minhqdao

## 0.7.1

- [PR-126](https://github.com/leisim/dartx/pull/126) Improve runtime of `elementAtOrNull` for `List`
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartx
description: Superpowers for Dart. Collection of useful static extension methods.
version: 0.7.1
version: 0.8.0
homepage: https://github.com/leisim/dartx

environment:
Expand Down

0 comments on commit 4dca258

Please sign in to comment.