Skip to content

Commit

Permalink
Release of version 0.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Kurzawa committed Sep 17, 2024
1 parent cb18640 commit 7f591a4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.23.1] - 2024-09-16

### Fixed
- [Android] Null pointer exception while launching callback from push notification in some cases.


## [0.23.0] - 2024-08-05

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Synerise React Native SDK (react-native-synerise-sdk) (0.23.0)
# Synerise React Native SDK (react-native-synerise-sdk) (0.23.1)

[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://github.com/synerise/ios-sdk)
[![Platform](https://img.shields.io/badge/platform-Android-orange.svg)](https://github.com/synerise/android-sdk)
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ext.versions = [
'minSdk' : 21,
'compileSdk' : 33,
'targetSdk' : 33,
'versionCode': 37,
'versionName': "0.23.0"
'versionCode': 38,
'versionName': "0.23.1"
]

buildscript {
Expand Down Expand Up @@ -58,7 +58,7 @@ repositories {
dependencies {
implementation 'com.facebook.react:react-native:+'
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
api 'com.synerise.sdk:synerise-mobile-sdk:5.20.0'
api 'com.synerise.sdk:synerise-mobile-sdk:5.20.1'
}

//apply from: 'publish.gradle'
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class RNSyneriseInitializer {
public Boolean isCrashHandlingEnabled;
public static volatile boolean isInitialized = false;

public static final String SDK_PLUGIN_VERSION = "0.23.0";
public static final String SDK_PLUGIN_VERSION = "0.23.1";

public void initialize(Application app) {
if (isInitialized == false) {
Expand Down
2 changes: 1 addition & 1 deletion ios/ReactNativeSynerise/Main/RNSyneriseInitializer.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import "RNSyneriseInitializer.h"

NSString * const SNRSyneriseSDKPluginVersion = @"0.23.0";
NSString * const SNRSyneriseSDKPluginVersion = @"0.23.1";

@implementation RNSyneriseInitializer

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": "react-native-synerise-sdk",
"version": "0.23.0",
"version": "0.23.1",
"description": "React Native wrapper for Synerise SDK",
"author": {
"name": "Synerise",
Expand Down

0 comments on commit 7f591a4

Please sign in to comment.