Skip to content

Commit

Permalink
Merge pull request #68 from 9oya/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
9oya authored Apr 25, 2023
2 parents 867510c + eacc2d2 commit 731d032
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.1
* Fix static analysis warnings by the dart formatter.

## 1.2.0
* Remove the completion callback from the EventLogger interface.
* Add Future return type to the logEvent method in the generated EventContainer and EventProvider.
Expand Down
3 changes: 2 additions & 1 deletion lib/src/event_logger.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
abstract class EventLogger {
const EventLogger();

Future<void> logEvent(String event, {required Map<String, dynamic> attributes});
Future<void> logEvent(String event,
{required Map<String, dynamic> attributes});

void setup() {}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: analytics_logger_gen
description: A code generator that generates analytics events for tools like FirebaseAnalytics. Import events from Google Spreadsheets, remote repositories or local CSV files.
version: 1.2.0
version: 1.2.1
homepage: https://github.com/9oya
repository: https://github.com/9oya/analytics_logger_gen
issue_tracker: https://github.com/9oya/analytics_logger_gen/issues
Expand Down

0 comments on commit 731d032

Please sign in to comment.