Skip to content

Commit 37d5cdd

Browse files
committed
Prepare release 0.9.1
1 parent 3047400 commit 37d5cdd

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.9.1
2+
3+
- [#138](https://github.com/passsy/kt.dart/pull/138) Deprecate `KtIterable<T>.sumByDouble` in favor of `KtIterable<T>.sumBy` which now works for `int` and `double`
4+
- [#140](https://github.com/passsy/kt.dart/pull/140) `KtMap.getOrDefault` now returns `V` instead of `V?`
5+
- [#140](https://github.com/passsy/kt.dart/pull/140) Fix `KtMap.groupBy` returning `KtMap<K, KtMutableList<T>>` instead of `KtMap<K, KtList<T>>` causing generic type problems in further processing
6+
17
# 0.9.0
28

39
- stable dependencies

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99

1010
This project is a port of Kotlin's [Kotlin Standard library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html) for Dart/Flutter projects. It's a useful addition to [`dart:core`](https://api.dartlang.org/stable/dart-core/dart-core-library.html) and includes collections (`KtList`, `KtMap`, `KtSet`) as well as other packages which can improve every Dart/Flutter app.
1111

12+
```yaml
13+
dependencies:
14+
kt_dart: ^0.9.0
15+
```
16+
17+
```dart
18+
import 'package:kt_dart/kt.dart';
19+
```
20+
1221

1322
## Motivation
1423

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: kt_dart
22
description: This project is a port of kotlin-stdlib for Dart/Flutter projects. It includes collections (KtList, KtMap, KtSet) with 150+ methods as well as other useful packages.
3-
version: 0.9.0
3+
version: 0.9.1
44
homepage: https://github.com/passsy/kt.dart
55

66
environment:

0 commit comments

Comments
 (0)