Skip to content

Commit

Permalink
feat/Version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Aug 15, 2023
1 parent 551094a commit 44224d7
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 1.4.1
#### August 15, 2023
* Bug Fixes
* Fixed: Mapping of is_read vs isRead and create_time vs createTime
* Fixed: Registration of App Inbox button for iOS part


## Release Notes for 1.4.0
#### April 28, 2023
* Features
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.0-SNAPSHOT'
version '1.4.1-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.0" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.4.1" />
<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.0;
MARKETING_VERSION = 1.4.1;
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.0;
MARKETING_VERSION = 1.4.1;
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.0;
MARKETING_VERSION = 1.4.1;
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.0+1
version: 1.4.1+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.0"
"1.4.1"
}
}

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.0
version: 1.4.1
homepage: https://exponea.com
repository: https://github.com/exponea/exponea-flutter-sdk

Expand Down

0 comments on commit 44224d7

Please sign in to comment.