Skip to content

Commit 627aac6

Browse files
all: bump version to 11.0.0
1 parent 1edb7b3 commit 627aac6

4 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
11.0.0
2+
___
3+
4+
**Plugin**
5+
* Updated Batch to 3.1
6+
* Batch requires iOS 15.0 or higher and Xcode 16.4
7+
* Batch requires to compile with SDK 36 (Android 16 'Baklava')
8+
9+
**Push**
10+
- Added `setShowNotifications` method to control whether android push notifications should be displayed.
11+
- Added `shouldShowNotifications` method to check current android notification display settings.
12+
- Removed `setNotificationTypes` method. You should now use `setShowNotifications` to control whether Batch should display notifications or not. Note that Batch still preserves your previous values and `shouldShowNotifications` will reflect them.
13+
14+
115
10.1.2
216
----
317

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/10.1.2";
56+
public static final String PLUGIN_VERSION = "ReactNative/11.0.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/10.1.2"
4+
#define PluginVersion "ReactNative/11.0.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": "10.1.2",
3+
"version": "11.0.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)