Skip to content

Commit

Permalink
all: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-roland committed Sep 6, 2024
1 parent 92215fc commit d0c4c5f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
7 changes: 6 additions & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="@batch.com/cordova-plugin"
version="5.4.0">
version="6.0.0">
<engines>
<engine name="cordova" version=">=9.0.0" />
<engine name="cordova-android" version=">=9.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion dist/src/android/BatchCordovaPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dist/src/ios/BatchCordovaPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <BatchBridgeCallback, BatchLoggerDelegate, BatchMessagingDelegate>

Expand Down

0 comments on commit d0c4c5f

Please sign in to comment.