From 1d3feed2c4b51fdd49dd9935eb49498f98f2e8e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Sun, 9 May 2021 21:55:45 +0700 Subject: [PATCH] 1.1.0 (#9) [skip ci] * 1.1.0 * fix lint --- CHANGELOG.md | 4 ++++ lib/src/impl/real_storage.dart | 4 ++-- pubspec.yaml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e1f562..6b6c7b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/lib/src/impl/real_storage.dart b/lib/src/impl/real_storage.dart index b990b65..71849d6 100644 --- a/lib/src/impl/real_storage.dart +++ b/lib/src/impl/real_storage.dart @@ -374,8 +374,8 @@ class RealRxStorage _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; } diff --git a/pubspec.yaml b/pubspec.yaml index 90c893d..08c8e57 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 homepage: https://github.com/Flutter-Dart-Open-Source/rx_storage.git repository: https://github.com/Flutter-Dart-Open-Source/rx_storage.git @@ -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