Skip to content

Release 10.1.1 version #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
10.1.1
----

**Expo**
- Fixed an issue preventing Expo from pre-building on iOS


10.1.0
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class RNBatchModuleImpl {

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

public static final String PLUGIN_VERSION = "ReactNative/10.0.1";
public static final String PLUGIN_VERSION = "ReactNative/10.1.1";

public static final String LOGGER_TAG = "RNBatchBridge";

Expand Down
2 changes: 1 addition & 1 deletion ios/RNBatch.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import <React/RCTEventEmitter.h>
#import <Batch/Batch.h>

#define PluginVersion "ReactNative/10.1.0"
#define PluginVersion "ReactNative/10.1.1"

#ifdef RCT_NEW_ARCH_ENABLED
#import <RNBatchSpec/RNBatchSpec.h>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@batch.com/react-native-plugin",
"version": "10.1.0",
"version": "10.1.1",
"description": "Batch.com React-Native Plugin",
"homepage": "https://github.com/BatchLabs/Batch-React-Native-Plugin",
"main": "dist/Batch.js",
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/ios/withReactNativeBatchAppDelegate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ export const modifyAppDelegate = (content: string): string => {
};

const isObjCDelegate = (content: string): boolean => {
return content.includes('@interface AppDelegate () <RCTBridgeDelegate>');
return content.includes('@implementation AppDelegate');
};