From 3af59c311939d61dfd5df6c6032adc99b435561f Mon Sep 17 00:00:00 2001 From: Petrus Nguyen Thai Hoc Date: Tue, 18 Jun 2024 18:50:47 +0700 Subject: [PATCH] prepare for v3.0.0 --- CHANGELOG.md | 7 +++++++ example/pubspec.lock | 2 +- pubspec.yaml | 11 ++++++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 049a46e..d1e4024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### 3.0.0 - Jun 18, 2024 + +- Update dependencies: + - `rxdart_ext` to `^0.3.0`. +- Change Flutter constraint to `'>=3.10.0'` (requires `Flutter 3.10` or later). +- Change Dart SDK constraint to `'>=3.0.0 <4.0.0'` (requires `Dart 3.0` or later). + ### 2.3.0 - Jun 3, 2022 - Update `rxdart_ext` to `0.2.2`. diff --git a/example/pubspec.lock b/example/pubspec.lock index 395147b..e74051d 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -92,7 +92,7 @@ packages: path: ".." relative: true source: path - version: "2.3.0" + version: "3.0.0" flutter_lints: dependency: "direct dev" description: diff --git a/pubspec.yaml b/pubspec.yaml index 1699914..0d9be84 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,14 +1,23 @@ name: flutter_bloc_pattern description: Bloc provider. Provides bloc to descendant widget (O(1)), and the bloc is disposed appropriately by state which the bloc_provider holds internally. -version: 2.3.0 +version: 3.0.0 homepage: https://github.com/hoc081098/flutter_bloc_pattern.git repository: https://github.com/hoc081098/flutter_bloc_pattern.git issue_tracker: https://github.com/hoc081098/flutter_bloc_pattern/issues +funding: + - https://www.buymeacoffee.com/hoc081098 environment: sdk: '>=3.0.0 <4.0.0' flutter: '>=3.10.0' +topics: + - rxdart + - hoc081098 + - flutter-bloc + - bloc + - state-management + dependencies: flutter: sdk: flutter