Skip to content

Commit 474309a

Browse files
author
Krzysztof Kurzawa
committed
Release of version 0.24.2
1 parent 56048ea commit 474309a

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [0.24.2] - 2024-10-15
6+
7+
### Fixed
8+
- [iOS] Optimization of the registration for push notifications process. The cache for that request was erroneously removed in version 4.23.0 of the native SDK.
9+
10+
511
## [0.24.1] - 2024-10-14
612

713
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Synerise React Native SDK (react-native-synerise-sdk) (0.24.1)
1+
# Synerise React Native SDK (react-native-synerise-sdk) (0.24.2)
22

33
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://github.com/synerise/ios-sdk)
44
[![Platform](https://img.shields.io/badge/platform-Android-orange.svg)](https://github.com/synerise/android-sdk)

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ ext.versions = [
44
'minSdk' : 21,
55
'compileSdk' : 33,
66
'targetSdk' : 33,
7-
'versionCode': 41,
8-
'versionName': "0.24.1"
7+
'versionCode': 42,
8+
'versionName': "0.24.2"
99
]
1010

1111
buildscript {

android/src/main/java/com/synerise/sdk/react/RNSyneriseInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class RNSyneriseInitializer {
1717
public Boolean isCrashHandlingEnabled;
1818
public static volatile boolean isInitialized = false;
1919

20-
public static final String SDK_PLUGIN_VERSION = "0.24.1";
20+
public static final String SDK_PLUGIN_VERSION = "0.24.2";
2121

2222
public void initialize(Application app) {
2323
if (isInitialized == false) {

ios/ReactNativeSynerise/Main/RNSyneriseInitializer.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#import "RNSyneriseInitializer.h"
1010

11-
NSString * const SNRSyneriseSDKPluginVersion = @"0.24.1";
11+
NSString * const SNRSyneriseSDKPluginVersion = @"0.24.2";
1212

1313
@implementation RNSyneriseInitializer
1414

ios/react-native-synerise-sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require 'json'
22

33
package = JSON.parse(File.read('./../package.json'))
44

5-
SYNERISE_SDK_FRAMEWORK_VERSION = '4.23.1'
5+
SYNERISE_SDK_FRAMEWORK_VERSION = '4.23.2'
66

77
Pod::Spec.new do |s|
88
s.name = package['name']

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-synerise-sdk",
3-
"version": "0.24.1",
3+
"version": "0.24.2",
44
"description": "React Native wrapper for Synerise SDK",
55
"author": {
66
"name": "Synerise",

react-native-synerise-sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require 'json'
22

33
package = JSON.parse(File.read('./package.json'))
44

5-
SYNERISE_SDK_FRAMEWORK_VERSION = '4.23.1'
5+
SYNERISE_SDK_FRAMEWORK_VERSION = '4.23.2'
66

77
Pod::Spec.new do |s|
88
s.name = package['name']

0 commit comments

Comments
 (0)