diff --git a/CHANGELOG.md b/CHANGELOG.md index 1817a17..26dcf61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ +8.1.2 +---- + +**Plugin** + +* Fixed an issue on Android where `open` push message events queued on cold start were sent before we could register a listener. + 8.1.1 ---- **Plugin** -* Fixed an issue where listening for `open` push message event wasn't working on cold start. +* Fixed an issue where listening for `open` push message events wasn't working on cold start. 8.1.0 ---- diff --git a/android/src/main/java/com/batch/batch_rn/RNBatchModule.java b/android/src/main/java/com/batch/batch_rn/RNBatchModule.java index b7acaaf..c3d7873 100644 --- a/android/src/main/java/com/batch/batch_rn/RNBatchModule.java +++ b/android/src/main/java/com/batch/batch_rn/RNBatchModule.java @@ -47,7 +47,7 @@ public class RNBatchModule extends ReactContextBaseJavaModule { private static final String NAME = "RNBatch"; private static final String PLUGIN_VERSION_ENVIRONMENT_VARIABLE = "batch.plugin.version"; - private static final String PLUGIN_VERSION = "ReactNative/8.1.1"; + private static final String PLUGIN_VERSION = "ReactNative/8.1.2"; public static final String LOGGER_TAG = "RNBatchBridge"; diff --git a/ios/RNBatch.h b/ios/RNBatch.h index 87b73ad..adddb3c 100644 --- a/ios/RNBatch.h +++ b/ios/RNBatch.h @@ -12,7 +12,7 @@ #import -#define PluginVersion "ReactNative/8.1.1" +#define PluginVersion "ReactNative/8.1.2" @interface RNBatch : RCTEventEmitter diff --git a/package.json b/package.json index 2b99723..fe19ba6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@batch.com/react-native-plugin", - "version": "8.1.1", + "version": "8.1.2", "description": "Batch.com React-Native Plugin", "homepage": "https://github.com/BatchLabs/Batch-React-Native-Plugin", "main": "dist/Batch.js",