Skip to content

Commit fad9a5d

Browse files
authored
feat/Version 1.3.1
1 parent fe34de7 commit fad9a5d

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)
22

33
## Release Notes
4+
## Release Notes for 1.3.1
5+
#### March 15, 2023
6+
* Bug Fixes
7+
* Fixed: Parsing pushAccentColor with support of ARGB format
8+
* Fixed: Handles empty/null push notification data correctly
9+
10+
411
## Release Notes for 1.3.0
512
#### March 03, 2023
613
* Features

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.exponea'
2-
version '1.3.0-SNAPSHOT'
2+
version '1.3.1-SNAPSHOT'
33

44
buildscript {
55
ext {

android/src/main/AndroidManifest.xml

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

66
<application>
77
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
8-
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.3.0" />
8+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.3.1" />
99
<receiver
1010
android:name=".ExponeaPushReceiver"
1111
android:enabled="true"

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@
801801
"$(inherited)",
802802
"@executable_path/Frameworks",
803803
);
804-
MARKETING_VERSION = 1.3.0;
804+
MARKETING_VERSION = 1.3.1;
805805
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
806806
PRODUCT_NAME = "$(TARGET_NAME)";
807807
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1220,7 +1220,7 @@
12201220
"$(inherited)",
12211221
"@executable_path/Frameworks",
12221222
);
1223-
MARKETING_VERSION = 1.3.0;
1223+
MARKETING_VERSION = 1.3.1;
12241224
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12251225
PRODUCT_NAME = "$(TARGET_NAME)";
12261226
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1254,7 +1254,7 @@
12541254
"$(inherited)",
12551255
"@executable_path/Frameworks",
12561256
);
1257-
MARKETING_VERSION = 1.3.0;
1257+
MARKETING_VERSION = 1.3.1;
12581258
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12591259
PRODUCT_NAME = "$(TARGET_NAME)";
12601260
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: exponea_example
22
description: Demonstrates how to use the exponea plugin.
3-
version: 1.3.0+1
3+
version: 1.3.1+1
44
publish_to: 'none'
55

66
environment:

ios/Classes/SwiftExponeaPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protocol IsExponeaFlutterSDK {
5454
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
5555
required public override init() { }
5656
public func getVersion() -> String {
57-
"1.3.0"
57+
"1.3.1"
5858
}
5959
}
6060

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: exponea
22
description: >-
33
A full featured wrapper for Exponea SDK that supports Android and iOS.
4-
version: 1.3.0
4+
version: 1.3.1
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)