Skip to content

Commit 979fb7d

Browse files
authored
feat/Version 1.2.0
1 parent 0755ba3 commit 979fb7d

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

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

33
## Release Notes
4+
## Release Notes for 1.2.0
5+
#### February 02, 2023
6+
* Features
7+
* Native SDK updated - Android to 3.2.1 and iOS to 2.13.1
8+
* Added Configuration flag to be able to disable tracking of default properties along with customer properties
9+
* Guiding documentation added for Push notification update after certain circumstances
10+
* Added documentation notes about tracking consent according to DSGVO/GDPR
11+
* Bug Fixes
12+
* Fixed: Update minimal iOS supported version in doc
13+
14+
415
## Release Notes for 1.1.0
516
#### September 02, 2022
617
* 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.1.0-SNAPSHOT'
2+
version '1.2.0-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.1.0" />
8+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.2.0" />
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
@@ -793,7 +793,7 @@
793793
"$(inherited)",
794794
"@executable_path/Frameworks",
795795
);
796-
MARKETING_VERSION = 1.1.0;
796+
MARKETING_VERSION = 1.2.0;
797797
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
798798
PRODUCT_NAME = "$(TARGET_NAME)";
799799
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1212,7 +1212,7 @@
12121212
"$(inherited)",
12131213
"@executable_path/Frameworks",
12141214
);
1215-
MARKETING_VERSION = 1.1.0;
1215+
MARKETING_VERSION = 1.2.0;
12161216
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12171217
PRODUCT_NAME = "$(TARGET_NAME)";
12181218
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1246,7 +1246,7 @@
12461246
"$(inherited)",
12471247
"@executable_path/Frameworks",
12481248
);
1249-
MARKETING_VERSION = 1.1.0;
1249+
MARKETING_VERSION = 1.2.0;
12501250
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12511251
PRODUCT_NAME = "$(TARGET_NAME)";
12521252
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.1.0+1
3+
version: 1.2.0+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
@@ -43,7 +43,7 @@ protocol IsExponeaFlutterSDK {
4343
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
4444
required public override init() { }
4545
public func getVersion() -> String {
46-
"1.1.0"
46+
"1.2.0"
4747
}
4848
}
4949

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.1.0
4+
version: 1.2.0
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)