Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuel-braz committed Feb 7, 2022
1 parent 73a2f1a commit f3930c9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@
- event filtering by type
- new widget builder (MicroAppWidgetBuilder)
- bug fixes
- refactoring
- refactoring

## 0.3.0
[2022-02-06]
### Added
- add distinct property to handlers
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,13 @@ MicroAppEventController()
// Use .cast() to automatically cast the payload data to String? type
logger.d(event.cast());
});
// It will be fired for every event, even if the value is the same (distinct = false)
@override
MicroAppEventHandler<String>? get microAppEventHandler =>
MicroAppEventHandler((event) {
logger.d(event.cast());
}, distinct: false);
```

#### Managing events
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: flutter_micro_app
description: A package to speed up the creation of micro frontends structure in Flutter applications
version: 0.2.0
version: 0.3.0
homepage: https://github.com/emanuel-braz/flutter_micro_app

environment:
Expand Down

0 comments on commit f3930c9

Please sign in to comment.