Skip to content

Commit

Permalink
1.1.0 (#9) [skip ci]
Browse files Browse the repository at this point in the history
* 1.1.0

* fix lint
  • Loading branch information
hoc081098 authored May 9, 2021
1 parent 83fd123 commit 1d3feed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.0 - May 9, 2021

- Update `rxdart` to `0.27.0`.

## 1.0.0 - Apr 30, 2021

- Stable release for null safety.
Expand Down
4 changes: 2 additions & 2 deletions lib/src/impl/real_storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ class RealRxStorage<Key extends Object, Options,
? stream
.doOnData((value) =>
_publishLog(OnDataStreamEvent(KeyAndValue(key, value, T))))
.doOnError((e, s) => _publishLog(
OnErrorStreamEvent(RxStorageError(e, s ?? StackTrace.empty))))
.doOnError(
(e, s) => _publishLog(OnErrorStreamEvent(RxStorageError(e, s))))
: stream;
}

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rx_storage
description: Reactive storage for Dart/Flutter. RxDart Storage for Dart/Flutter.
version: 1.0.0
version: 1.1.0
author: Petrus Nguyen Thai Hoc <[email protected]>
homepage: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
repository: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
Expand All @@ -10,7 +10,7 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
rxdart_ext: ^0.0.1
rxdart_ext: ^0.1.0
disposebag: ^1.5.0
meta: ^1.3.0
stack_trace: ^1.10.0
Expand Down

0 comments on commit 1d3feed

Please sign in to comment.