From a081d138a90e405d9cd9ec7e8b2fc440e93e85b3 Mon Sep 17 00:00:00 2001 From: adam1929 <103995671+adam1929@users.noreply.github.com> Date: Tue, 23 May 2023 15:56:10 +0200 Subject: [PATCH] feat/Version 1.5.0 --- android/src/main/AndroidManifest.xml | 2 +- documentation/RELEASE_NOTES.md | 9 +++++++++ example/android/app/build.gradle | 4 ++-- example/ios/ExampleNotificationContent/Info.plist | 4 ++-- example/ios/ExampleNotificationService/Info.plist | 4 ++-- example/ios/example/Info.plist | 4 ++-- ios/Exponea.swift | 2 +- package.json | 2 +- 8 files changed, 20 insertions(+), 11 deletions(-) diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 4b995c6..1493381 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -12,6 +12,6 @@ - + diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md index acce465..27f4195 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -1,6 +1,15 @@ ## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md) ## Release Notes +## Release Notes for 1.5.0 +#### May 23, 2023 +* Features + * Native SDK updated - Android to 3.6.1 and iOS to 2.16.2 + * ReactNative support increased to 0.71.8 + * API has been extended to match native SDKs as much as possible (additional tracking of Inapp messages, App Inbox, Push token and notifications) + * Added InApp messages callback handler to define your customised message action handling + + ## Release Notes for 1.4.0 #### April 04, 2023 * Features diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 975bb14..541e600 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -139,8 +139,8 @@ android { applicationId "com.exponea.example" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 11 - versionName "1.4.0" + versionCode 12 + versionName "1.5.0" multiDexEnabled true } splits { diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist index ce36f44..9b85166 100644 --- a/example/ios/ExampleNotificationContent/Info.plist +++ b/example/ios/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.4.0 + 1.5.0 CFBundleVersion - 11 + 12 NSExtension NSExtensionAttributes diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist index f494580..6f3b7c9 100644 --- a/example/ios/ExampleNotificationService/Info.plist +++ b/example/ios/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.4.0 + 1.5.0 CFBundleVersion - 11 + 12 NSExtension NSExtensionPointIdentifier diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist index 5e7e283..bfb0117 100644 --- a/example/ios/example/Info.plist +++ b/example/ios/example/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.4.0 + 1.5.0 CFBundleSignature ???? CFBundleVersion - 11 + 12 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/ios/Exponea.swift b/ios/Exponea.swift index 3e6b31f..36927d5 100644 --- a/ios/Exponea.swift +++ b/ios/Exponea.swift @@ -18,7 +18,7 @@ protocol IsExponeaReactNativeSDK { public class ExponeaRNVersion: NSObject, ExponeaVersionProvider { required public override init() { } public func getVersion() -> String { - "1.4.0" + "1.5.0" } } diff --git a/package.json b/package.json index b487e0c..bb05dd6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-exponea-sdk", "title": "React Native Exponea Sdk", - "version": "1.4.0", + "version": "1.5.0", "description": "React native SDK for Exponea integration", "main": "lib/index.js", "types": "lib/index.d.ts",