From fdde562d8b2272771b5e67536087c0f8a1af4424 Mon Sep 17 00:00:00 2001 From: Petrus Nguyen Thai Hoc Date: Sun, 15 Oct 2023 17:29:46 +0700 Subject: [PATCH] chore: prepare for 3.1.0 --- CHANGELOG.md | 4 ++-- README.md | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ad10d7..e5120aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.1.0 - TODO +## 3.1.0 - Oct 15, 2023 - Update dependencies - `shared_preferences` to `^2.0.18`. @@ -8,7 +8,7 @@ - Change `Dart SDK` constraint to `'>=2.17.0 <4.0.0'`. -- Deprecate all `executeUpdate...` extension methods, use `update...` instead. +- Deprecate all `executeUpdate...` extension methods, use `update...`s instead. ## 3.0.0 - Jun 3, 2022 diff --git a/README.md b/README.md index 6ac8c54..59a6837 100644 --- a/README.md +++ b/README.md @@ -240,11 +240,6 @@ You can dispose the `RxSharedPreferences` when it is no longer needed. Just call `rxPrefs.dispose()`. Usually, you call this method on `dispose` method of a Flutter `State`. -> NOTE: If you use the default singleton instance (via `RxSharedPreferences.getInstance()`, -> you should **not** call the `dispose` method, -> must keep the instance alive for the entire lifetime of the application. - - ## Example demo | [Simple authentication app with `BLoC rxdart pattern`](https://github.com/hoc081098/node-auth-flutter-BLoC-pattern-RxDart.git) | [Build ListView from Stream using `RxSharedPreferences`](https://github.com/hoc081098/rx_shared_preferences/tree/master/example) | [Change theme and locale (language) runtime](https://github.com/hoc081098/bloc_rxdart_playground/tree/master/flutter_change_theme) |