Skip to content

Commit

Permalink
chore(hydrated_bloc): v9.1.1 (#3842)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed May 20, 2023
1 parent 9816c66 commit e19e975
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions packages/hydrated_bloc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 9.1.1

- docs: upgrade to Dart 3 ([#3809](https://github.com/felangel/bloc/pull/3809))
- refactor: standardize analysis_options ([#3809](https://github.com/felangel/bloc/pull/3809))
- refactor: fix `unawaited` sdk constraint ([#3809](https://github.com/felangel/bloc/pull/3809))
- refactor: update sdk constraints and fix analysis warnings ([#3809](https://github.com/felangel/bloc/pull/3809))

# 9.1.0

- chore: add screenshots to `pubspec.yaml` ([#3721](https://github.com/felangel/bloc/pull/3721))
Expand Down
4 changes: 2 additions & 2 deletions packages/hydrated_bloc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ class CounterCubit extends HydratedCubit<int> {
### Create a HydratedBloc

```dart
abstract class CounterEvent {}
class CounterIncrementPressed extends CounterEvent {}
sealed class CounterEvent {}
final class CounterIncrementPressed extends CounterEvent {}
class CounterBloc extends HydratedBloc<CounterEvent, int> {
CounterBloc() : super(0) {
Expand Down
4 changes: 2 additions & 2 deletions packages/hydrated_bloc/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: hydrated_bloc
description: An extension to the bloc state management library which automatically persists and restores bloc states.
version: 9.1.0
version: 9.1.1
repository: https://github.com/felangel/bloc/tree/master/packages/hydrated_bloc
issue_tracker: https://github.com/felangel/bloc/issues
homepage: https://bloclibrary.dev
documentation: https://bloclibrary.dev/#/gettingstarted

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.12.0 <4.0.0"

dependencies:
bloc: ^8.1.1
Expand Down

0 comments on commit e19e975

Please sign in to comment.