Skip to content

Commit e6327e3

Browse files
committed
all: bump version to 7.0.0
1 parent 11d536e commit e6327e3

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Batch Cordova Plugin
22

3-
## UPCOMING
3+
## 7.0.0
44

55
**Plugin**
66
* Updated Batch to 2.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This repository contains the plugin's source code (native code + cordova) and bu
1515
This plugin is compatible with:
1616

1717
- cordova 9.0.0+
18-
- cordova-android 9.0.0+
18+
- cordova-android 14.0.0+
1919
- cordova-ios 6.0.0+
2020

2121
Subsequent major Cordova and Cordova platform versions are _not_ supported until told otherwise.

dist/package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@batch.com/cordova-plugin",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"description": "Batch.com SDK Cordova/Ionic plugin for Android and iOS",
55
"types": "index.d.ts",
66
"cordova": {
@@ -56,6 +56,11 @@
5656
"cordova": ">=9.0.0",
5757
"cordova-android": ">=9.0.0",
5858
"cordova-ios": ">=6.0.0"
59+
},
60+
"7.0.0": {
61+
"cordova": ">=9.0.0",
62+
"cordova-android": ">=14.0.0",
63+
"cordova-ios": ">=6.0.0"
5964
}
6065
},
6166
"author": "Batch.com",

dist/plugin.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="@batch.com/cordova-plugin"
5-
version="6.0.0">
5+
version="7.0.0">
66
<engines>
77
<engine name="cordova" version=">=9.0.0" />
8-
<engine name="cordova-android" version=">=9.0.0" />
8+
<engine name="cordova-android" version=">=14.0.0" />
99
<engine name="cordova-ios" version=">=6.0.0" />
1010
</engines>
1111
<name>Batch</name>

dist/src/android/BatchCordovaPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class BatchCordovaPlugin extends CordovaPlugin implements Callback, Logge
3939

4040
private static final String PLUGIN_VERSION_ENVIRONEMENT_VAR = "batch.plugin.version";
4141

42-
private static final String PLUGIN_VERSION = "Cordova/6.0.0";
42+
private static final String PLUGIN_VERSION = "Cordova/7.0.0";
4343

4444
/**
4545
* Key used to add extra to an intent to prevent it to be used more than once to compute opens

dist/src/ios/BatchCordovaPlugin.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#import "BatchBridge.h"
1212
#import "BatchBridgeCallback.h"
1313

14-
#define PluginVersion "Cordova/6.0.0"
14+
#define PluginVersion "Cordova/7.0.0"
1515

1616
@interface BatchCordovaPlugin : CDVPlugin <BatchBridgeCallback, BatchLoggerDelegate, BatchMessagingDelegate>
1717

0 commit comments

Comments
 (0)