Skip to content

Commit 60074c4

Browse files
committed
1.3.0
1 parent eb5aae1 commit 60074c4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.3.0 - Jun 21, 2021
2+
3+
* Rename `FlatMapPolicy` to `FlattenStrategy`.
4+
* Fix `LoaderBloc.refresh()` does not complete.
5+
16
## 1.2.1 - Jun 17, 2021
27

38
* Change `dispose` from a field to a function.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ packages:
435435
path: ".."
436436
relative: true
437437
source: path
438-
version: "1.2.1"
438+
version: "1.3.0"
439439
stream_transform:
440440
dependency: transitive
441441
description:

lib/src/loader_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ extension _FlatMapWithStrategy<T> on Stream<T> {
4646

4747
/// BLoC that handles loading and refreshing data
4848
class LoaderBloc<Content extends Object> {
49-
static const _tag = '« stream_loader »';
49+
static const _tag = '💧stream_loader💧';
5050

5151
/// View state stream
5252
final DistinctValueStream<LoaderState<Content>> state$;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_loader
22
description: A flutter plugin for loading content asynchronously with Dart stream. RxDart loader bloc.
3-
version: 1.2.1
3+
version: 1.3.0
44
homepage: https://github.com/hoc081098/stream_loader.git
55
repository: https://github.com/hoc081098/stream_loader.git
66
issue_tracker: https://github.com/hoc081098/stream_loader/issues

0 commit comments

Comments
 (0)