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