From a9a5c7607e76563fa72b22c033ab2245eb63e1ba Mon Sep 17 00:00:00 2001 From: adam1929 <103995671+adam1929@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:15:13 +0200 Subject: [PATCH] feat/Version 1.8.0 --- android/src/main/AndroidManifest.xml | 2 +- documentation/RELEASE_NOTES.md | 8 ++++++++ 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, 19 insertions(+), 11 deletions(-) diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 28d3e1a..36e8ffe 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 0458bc7..7155cda 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -1,6 +1,14 @@ ## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md) ## Release Notes +## Release Notes for 1.8.0 +#### April 30, 2024 +* Features + * Segmentation API feature support + * Case of using RCTAppDelegate described more deeply in documentation + * How to run example app documentation update + + ## Release Notes for 1.7.0 #### April 12, 2024 * Features diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 2406fca..2856cb6 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -140,8 +140,8 @@ android { applicationId "com.exponea.example" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 17 - versionName "1.7.0" + versionCode 18 + versionName "1.8.0" multiDexEnabled true } splits { diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist index 515e460..5c46769 100644 --- a/example/ios/ExampleNotificationContent/Info.plist +++ b/example/ios/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.7.0 + 1.8.0 CFBundleVersion - 17 + 18 NSExtension NSExtensionAttributes diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist index 30ce784..7ae164f 100644 --- a/example/ios/ExampleNotificationService/Info.plist +++ b/example/ios/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.7.0 + 1.8.0 CFBundleVersion - 17 + 18 NSExtension NSExtensionPointIdentifier diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist index a9ec67c..b760b48 100644 --- a/example/ios/example/Info.plist +++ b/example/ios/example/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.7.0 + 1.8.0 CFBundleSignature ???? CFBundleVersion - 17 + 18 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/ios/Exponea.swift b/ios/Exponea.swift index 33ad7d3..1616421 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.7.0" + "1.8.0" } } diff --git a/package.json b/package.json index aad971e..4c8f3ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-exponea-sdk", "title": "React Native Exponea Sdk", - "version": "1.7.0", + "version": "1.8.0", "description": "React native SDK for Exponea integration", "main": "lib/index.js", "types": "lib/index.d.ts",