Skip to content

Commit

Permalink
Merge branch 'release/5.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Jul 19, 2023
2 parents 861c786 + c332c8d commit 81608d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [Unreleased](https://github.com/bsorrentino/cordova-broadcaster/compare/v5.0.0...HEAD)

- update changelog [`e8629f6`](https://github.com/bsorrentino/cordova-broadcaster/commit/e8629f61d87479e0d39f9f5a6f69830643a6ee64)
- fix(plugin.xml): add androidx.localbroadcastmanager dependency [`3ccd8db`](https://github.com/bsorrentino/cordova-broadcaster/commit/3ccd8db9d6a7574cd4d71aece4c598e4c3f0ce21)
- build: add test script [`046f450`](https://github.com/bsorrentino/cordova-broadcaster/commit/046f45065c0bf1b0671154b46a0c422b2ef49301)

### [v5.0.0](https://github.com/bsorrentino/cordova-broadcaster/compare/v4.3.1...v5.0.0)

> 14 July 2023
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-broadcaster",
"version": "5.0.0",
"version": "5.1.0",
"description": "Allow send message from Javascript to Native",
"cordova": {
"id": "cordova-plugin-broadcaster",
Expand All @@ -26,7 +26,7 @@
"2.3.0": {
"cordova-android": ">4.0.0"
},
"5.0.0": {
"5.1.0": {
"cordova-android": ">9.0.0"
}
}
Expand Down
5 changes: 3 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-broadcaster"
version="4.3.2"
version="5.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<engines>
Expand Down Expand Up @@ -32,7 +32,8 @@
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/CDVBroadcaster.java" target-dir="src/org/bsc/cordova" />
<framework src="com.android.support:support-v4:26+" />
<!--framework src="com.android.support:support-v4:26+" /-->
<framework src="androidx.localbroadcastmanager:localbroadcastmanager:1.1.0" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
Expand Down

0 comments on commit 81608d3

Please sign in to comment.