Skip to content

Commit 5ea1485

Browse files
all: bump version to 11.1.0
1 parent 6f192fc commit 5ea1485

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
11.1.0
2+
___
3+
4+
**Expo**
5+
- Added configuration field `shouldUseNonNullableIntent` to control whether the MainActivity's `onNewIntent` method uses a nullable or non-nullable Intent parameter on Android. This is required for compatibility with AndroidX Activity 1.9+ which uses non-nullable Intent types. By default, it is set to `false` (nullable Intent) for backwards compatibility. Set it to `true` if you're using AndroidX Activity 1.9 or higher.
6+
7+
18
11.0.0
29
___
310

android/src/main/java/com/batch/batch_rn/RNBatchModuleImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class RNBatchModuleImpl {
5353

5454
private static final String PLUGIN_VERSION_ENVIRONMENT_VARIABLE = "batch.plugin.version";
5555

56-
public static final String PLUGIN_VERSION = "ReactNative/11.0.0";
56+
public static final String PLUGIN_VERSION = "ReactNative/11.1.0";
5757

5858
public static final String LOGGER_TAG = "RNBatchBridge";
5959

ios/RNBatch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <React/RCTEventEmitter.h>
22
#import <Batch/Batch.h>
33

4-
#define PluginVersion "ReactNative/11.0.0"
4+
#define PluginVersion "ReactNative/11.1.0"
55

66
#ifdef RCT_NEW_ARCH_ENABLED
77
#import <RNBatchSpec/RNBatchSpec.h>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@batch.com/react-native-plugin",
3-
"version": "11.0.0",
3+
"version": "11.1.0",
44
"description": "Batch.com React-Native Plugin",
55
"homepage": "https://github.com/BatchLabs/Batch-React-Native-Plugin",
66
"main": "dist/Batch.js",

0 commit comments

Comments
 (0)