From f5b0e34a3b9d6bf538454814ef7fc0eac4296b7c Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Wed, 20 Jul 2022 11:26:28 +0530 Subject: [PATCH] chore(release): bump to v0.2.1 --- .all-contributorsrc | 10 ++++++++++ CHANGELOG.md | 6 +++++- README.md | 3 ++- lib/receive_intent.dart | 2 +- pubspec.yaml | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 0753021..ff2f99e 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -37,6 +37,16 @@ "contributions": [ "code" ] + }, + { + "login": "eric-nextsense", + "name": "eric-nextsense", + "avatar_url": "https://avatars.githubusercontent.com/u/78733538?v=4", + "profile": "https://github.com/eric-nextsense", + "contributions": [ + "bug", + "code" + ] } ], "contributorsPerLine": 7, diff --git a/CHANGELOG.md b/CHANGELOG.md index 11aac85..1cd85eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.1 + + * **FIX**: fix(android): update android tools versions (#12) + ## 0.2.0 * **FEAT**: allow receipt of intents with no action (#9). @@ -5,7 +9,7 @@ ## [0.1.6] - 8 December 2021 -* feat: `Intent.toString` implmented nicely +* feat: `Intent.toString` implemented nicely ## [0.1.5] - 20 June 2021 diff --git a/README.md b/README.md index a53cf60..4b4abcd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

-All Contributors +All Contributors pub.dev analysis @@ -162,6 +162,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Harsh Bhikadia

🤔 💻
Mateusz Soszyński

💻
Chris Tomlinson

💻 +
eric-nextsense

🐛 💻 diff --git a/lib/receive_intent.dart b/lib/receive_intent.dart index c9b2bac..72bcc10 100644 --- a/lib/receive_intent.dart +++ b/lib/receive_intent.dart @@ -80,7 +80,7 @@ class ReceiveIntent { .map((event) => Intent.fromMap(event as Map?)); static Future setResult(int resultCode, - {Map? data, bool shouldFinish: false}) async { + {Map? data, bool shouldFinish: false}) async { await _methodChannel.invokeMethod('setResult', { "resultCode": resultCode, if (data != null) "data": json.encode(data), diff --git a/pubspec.yaml b/pubspec.yaml index 845827a..59b47b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: receive_intent description: Flutter plugin for passing Android Intents to the Flutter environment. -version: 0.2.0 +version: 0.2.1 homepage: https://github.com/daadu/receive_intent environment: