Skip to content

Commit d0c4c5f

Browse files
committed
all: bump version
1 parent 92215fc commit d0c4c5f

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Batch Cordova Plugin
22

33
## 6.0.0
44

5-
This is a major release, please see our [migration guide](https://doc.batch.com/cordova/advanced/5x-migration/) for more info on how to update your current Batch implementation.
5+
This is a major release, please see our [migration guide](https://doc.batch.com/cordova/migrations/5x-migration/) for more info on how to update your current Batch implementation.
66

77
**Plugin**
88
* Updated Batch to 2.0. For more information see the [ios](https://doc.batch.com/ios/sdk-changelog/#2_0_0) and [android](https://doc.batch.com/android/sdk-changelog/#2_0_0) changelog .

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": "5.4.0",
3+
"version": "6.0.0",
44
"description": "Batch.com SDK Cordova/Ionic plugin for Android and iOS",
55
"types": "index.d.ts",
66
"cordova": {
@@ -51,6 +51,11 @@
5151
"cordova": ">=9.0.0",
5252
"cordova-android": ">=9.0.0",
5353
"cordova-ios": ">=6.0.0"
54+
},
55+
"6.0.0": {
56+
"cordova": ">=9.0.0",
57+
"cordova-android": ">=9.0.0",
58+
"cordova-ios": ">=6.0.0"
5459
}
5560
},
5661
"author": "Batch.com",

dist/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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="5.4.0">
5+
version="6.0.0">
66
<engines>
77
<engine name="cordova" version=">=9.0.0" />
88
<engine name="cordova-android" version=">=9.0.0" />

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/5.4.0";
42+
private static final String PLUGIN_VERSION = "Cordova/6.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/5.4.0"
14+
#define PluginVersion "Cordova/6.0.0"
1515

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

0 commit comments

Comments
 (0)