Skip to content

Commit

Permalink
feat/Version 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-misica committed Oct 11, 2023
1 parent f47f87c commit 88a6a17
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 1.4.2
#### October 11, 2023
* Bug Fixes
* Fixed: requireNotConfigured() used in isRead and other methods


## Release Notes for 1.4.1
#### August 15, 2023
* Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.exponea'
version '1.4.1-SNAPSHOT'
version '1.4.2-SNAPSHOT'

buildscript {
ext {
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<application>
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.4.1" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.4.2" />
<receiver
android:name=".ExponeaPushReceiver"
android:enabled="true"
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.1;
MARKETING_VERSION = 1.4.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1220,7 +1220,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.1;
MARKETING_VERSION = 1.4.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1254,7 +1254,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.1;
MARKETING_VERSION = 1.4.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: exponea_example
description: Demonstrates how to use the exponea plugin.
version: 1.4.1+1
version: 1.4.2+1
publish_to: 'none'

environment:
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SwiftExponeaPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protocol IsExponeaFlutterSDK {
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
"1.4.1"
"1.4.2"
}
}

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: exponea
description: >-
A full featured wrapper for Exponea SDK that supports Android and iOS.
version: 1.4.1
version: 1.4.2
homepage: https://exponea.com
repository: https://github.com/exponea/exponea-flutter-sdk

Expand Down

0 comments on commit 88a6a17

Please sign in to comment.