chore(release): bump to v0.2.1
This commit is contained in:
parent
f4b1c3e197
commit
f5b0e34a3b
5 changed files with 19 additions and 4 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<p>
|
||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-3-orange.svg" alt="All Contributors" /></a>
|
||||
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-4-orange.svg" alt="All Contributors" /></a>
|
||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||
<a href="https://pub.dev/packages/receive_intent"><img src="https://img.shields.io/pub/v/receive_intent?logo=dart" alt="pub.dev"></a>
|
||||
<a href="https://github.com/daadu/receive_intent/actions?query=workflow%3Aanalysis"><img src="https://github.com/daadu/receive_intent/workflows/analysis/badge.svg" alt="analysis"></a>
|
||||
|
@ -162,6 +162,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|||
<td align="center"><a href="https://bhikadia.com/"><img src="https://avatars.githubusercontent.com/u/4963236?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Harsh Bhikadia</b></sub></a><br /><a href="#ideas-daadu" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/daadu/receive_intent/commits?author=daadu" title="Code">💻</a></td>
|
||||
<td align="center"><a href="https://the.lastgimbus.com/"><img src="https://avatars.githubusercontent.com/u/40139196?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateusz Soszyński</b></sub></a><br /><a href="https://github.com/daadu/receive_intent/commits?author=TheLastGimbus" title="Code">💻</a></td>
|
||||
<td align="center"><a href="https://github.com/luckyrat"><img src="https://avatars.githubusercontent.com/u/1211375?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chris Tomlinson</b></sub></a><br /><a href="https://github.com/daadu/receive_intent/commits?author=luckyrat" title="Code">💻</a></td>
|
||||
<td align="center"><a href="https://github.com/eric-nextsense"><img src="https://avatars.githubusercontent.com/u/78733538?v=4?s=100" width="100px;" alt=""/><br /><sub><b>eric-nextsense</b></sub></a><br /><a href="https://github.com/daadu/receive_intent/issues?q=author%3Aeric-nextsense" title="Bug reports">🐛</a> <a href="https://github.com/daadu/receive_intent/commits?author=eric-nextsense" title="Code">💻</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ class ReceiveIntent {
|
|||
.map<Intent?>((event) => Intent.fromMap(event as Map?));
|
||||
|
||||
static Future<void> setResult(int resultCode,
|
||||
{Map<String, dynamic?>? data, bool shouldFinish: false}) async {
|
||||
{Map<String, Object?>? data, bool shouldFinish: false}) async {
|
||||
await _methodChannel.invokeMethod('setResult', <String, dynamic>{
|
||||
"resultCode": resultCode,
|
||||
if (data != null) "data": json.encode(data),
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue