Skip to content

Commit

Permalink
feat/Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Jan 29, 2024
1 parent ad127d9 commit d989a90
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 1.5.0
#### January 29, 2024
* Features
* In-app content block feature has been added into SDK
* Dart SDK version increased to 2.17.0
* Flutter minimal version increased to 3.0.0
* Bug Fixes
* Fixed: Bad handling of native errors to Flutter ones causes crash
* Fixed: Wrong data types for App Inbox params showIcon and enabled


## Release Notes for 1.4.2
#### October 11, 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.2-SNAPSHOT'
version '1.5.0-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.2" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.5.0" />
<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 @@ -804,7 +804,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.2;
MARKETING_VERSION = 1.5.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1223,7 +1223,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.2;
MARKETING_VERSION = 1.5.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1257,7 +1257,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.2;
MARKETING_VERSION = 1.5.0;
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.2+1
version: 1.5.0+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 @@ -55,7 +55,7 @@ protocol IsExponeaFlutterSDK {
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
"1.4.2"
"1.5.0"
}
}

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

Expand Down

0 comments on commit d989a90

Please sign in to comment.