diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c3134..03b3424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Batch Cordova Plugin ## 6.0.0 -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. +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. **Plugin** * 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 . diff --git a/dist/package.json b/dist/package.json index 135e24b..2df6d08 100644 --- a/dist/package.json +++ b/dist/package.json @@ -1,6 +1,6 @@ { "name": "@batch.com/cordova-plugin", - "version": "5.4.0", + "version": "6.0.0", "description": "Batch.com SDK Cordova/Ionic plugin for Android and iOS", "types": "index.d.ts", "cordova": { @@ -51,6 +51,11 @@ "cordova": ">=9.0.0", "cordova-android": ">=9.0.0", "cordova-ios": ">=6.0.0" + }, + "6.0.0": { + "cordova": ">=9.0.0", + "cordova-android": ">=9.0.0", + "cordova-ios": ">=6.0.0" } }, "author": "Batch.com", diff --git a/dist/plugin.xml b/dist/plugin.xml index 0190ebc..2113401 100755 --- a/dist/plugin.xml +++ b/dist/plugin.xml @@ -2,7 +2,7 @@ + version="6.0.0"> diff --git a/dist/src/android/BatchCordovaPlugin.java b/dist/src/android/BatchCordovaPlugin.java index a79a581..18ff3c1 100644 --- a/dist/src/android/BatchCordovaPlugin.java +++ b/dist/src/android/BatchCordovaPlugin.java @@ -39,7 +39,7 @@ public class BatchCordovaPlugin extends CordovaPlugin implements Callback, Logge private static final String PLUGIN_VERSION_ENVIRONEMENT_VAR = "batch.plugin.version"; - private static final String PLUGIN_VERSION = "Cordova/5.4.0"; + private static final String PLUGIN_VERSION = "Cordova/6.0.0"; /** * Key used to add extra to an intent to prevent it to be used more than once to compute opens diff --git a/dist/src/ios/BatchCordovaPlugin.h b/dist/src/ios/BatchCordovaPlugin.h index b27b9c2..656c203 100644 --- a/dist/src/ios/BatchCordovaPlugin.h +++ b/dist/src/ios/BatchCordovaPlugin.h @@ -11,7 +11,7 @@ #import "BatchBridge.h" #import "BatchBridgeCallback.h" -#define PluginVersion "Cordova/5.4.0" +#define PluginVersion "Cordova/6.0.0" @interface BatchCordovaPlugin : CDVPlugin