Skip to content

Commit

Permalink
all: release 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abarisain committed Dec 22, 2021
1 parent e0c24b9 commit cba62a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
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.0.1",
"version": "5.1.0",
"description": "Batch.com SDK Cordova/Ionic plugin for Android and iOS",
"types": "index.d.ts",
"cordova": {
Expand Down Expand Up @@ -36,6 +36,11 @@
"cordova": ">=9.0.0",
"cordova-android": ">=9.0.0",
"cordova-ios": ">=6.0.0"
},
"5.1.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.0.1">
version="5.1.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.0.1";
private static final String PLUGIN_VERSION = "Cordova/5.1.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.0.1"
#define PluginVersion "Cordova/5.1.0"

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

Expand Down

0 comments on commit cba62a9

Please sign in to comment.