Skip to content

Commit

Permalink
package version set to 1.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PfeiJit committed Sep 13, 2023
1 parent 0444913 commit f84b643
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## 1.0.0
## 1.0.0-rc.1
- Initialize package.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<picture >
<source media="(prefers-color-scheme: dark)" height='120px' srcset="https://raw.githubusercontent.com/netglade/safe_bloc/main/doc/badge-dark.png">
<source media="(prefers-color-scheme: light)" height='120px' srcset="https://raw.githubusercontent.com/netglade/safe_bloc/main/doc/badge-light.png">
<img alt="netglade" height='120px' src="https://raw.githubusercontent.com/netglade/safe_bloc/main/doc/safe_bloc-noSpace.png">
<img alt="netglade" height='120px' src="https://raw.githubusercontent.com/netglade/safe_bloc/main/doc/badge-light.png">
</picture>
</a>

Expand Down Expand Up @@ -57,9 +57,9 @@ class MyAppBloc extends SafeBloc<MyAppEvent, MyAppState> {
Now, whenever you register a new event handler, use `onSafe<EVENT>`
event handler instead of standard `on<EVENT>`:
```dart
onSafe<MyBlocEvent>((event, emit, {required trackingId}) async {
onSafe<MyBlocEvent>(event, emit, {required trackingId}) async {
// do something
});
}
```

#### Cubit
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: safe_bloc
description: An extension to bloc state management library that manages unexpected exceptions.
version: 1.0.0
version: 1.0.0-rc.1
repository: https://github.com/netglade/safe_bloc
issue_tracker: https://github.com/netglade/safe_bloc/issues

Expand Down

0 comments on commit f84b643

Please sign in to comment.