Skip to content

Commit

Permalink
Release of version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Kurzawa committed Sep 17, 2024
1 parent 55d2ea9 commit 755ef27
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.3.1] - 2024-09-16

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


## [1.3.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 Flutter SDK (synerise-flutter-sdk) (1.3.0)
# Synerise Flutter SDK (synerise-flutter-sdk) (1.3.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
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ repositories {
}

dependencies {
implementation 'com.synerise.sdk:synerise-mobile-sdk:5.20.0'
implementation 'com.synerise.sdk:synerise-mobile-sdk:5.20.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import io.flutter.plugin.common.MethodChannel;

public class SyneriseInitializer implements SyneriseModule {
private static String sdkPluginVersion = "1.3.0";
private static String sdkPluginVersion = "1.3.1";
private static SyneriseInitializer instance;
protected static volatile boolean isInitialized = false;

Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/Modules/FSynerise.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

NS_ASSUME_NONNULL_BEGIN

static NSString * const sdkPluginVersion = @"1.3.0";
static NSString * const sdkPluginVersion = @"1.3.1";

@interface FSynerise () <SNRSyneriseDelegate>

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: synerise_flutter_sdk
description: >-
Flutter plugin for Synerise SDK. Most up-to-date documentation is available at Synerise Help Center.
version: 1.3.0
version: 1.3.1
homepage: https://synerise.com
documentation: https://help.synerise.com/developers/mobile-sdk/
repository: https://github.com/Synerise/synerise-flutter-sdk
Expand Down

0 comments on commit 755ef27

Please sign in to comment.