diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 18ae44a..09a63cc 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 37dd68c..5dbc6f5 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -1,6 +1,19 @@ ## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md) ## Release Notes +## Release Notes for 1.6.0 +#### November 29, 2023 +* Features + * In-app content block feature has been added into SDK + * ReactNative support increased to 0.72.7 + * Anonymize feature has been described with more details in documentation + * PUSH notification Payload structure has been documented + * PUSH handling described with more details in documentation + * Tracking of PUSH token has been described with more details in documentation +* Bug Fixes + * Fixed: HMS token usage example in docu misused methods for GMS + + ## Release Notes for 1.5.2 #### July 13, 2023 * Features diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 1123d8c..b8a1f75 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 14 - versionName "1.5.2" + versionCode 15 + versionName "1.6.0" multiDexEnabled true } splits { diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist index cadeff2..e90c490 100644 --- a/example/ios/ExampleNotificationContent/Info.plist +++ b/example/ios/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.5.2 + 1.6.0 CFBundleVersion - 14 + 15 NSExtension NSExtensionAttributes diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist index ea3c843..a1a4e0d 100644 --- a/example/ios/ExampleNotificationService/Info.plist +++ b/example/ios/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.5.2 + 1.6.0 CFBundleVersion - 14 + 15 NSExtension NSExtensionPointIdentifier diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist index fe96e94..13de225 100644 --- a/example/ios/example/Info.plist +++ b/example/ios/example/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.2 + 1.6.0 CFBundleSignature ???? CFBundleVersion - 14 + 15 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/ios/Exponea.swift b/ios/Exponea.swift index b0e7070..5451ccf 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.5.2" + "1.6.0" } } diff --git a/package.json b/package.json index 6b3c35b..97fa673 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-exponea-sdk", "title": "React Native Exponea Sdk", - "version": "1.5.2", + "version": "1.6.0", "description": "React native SDK for Exponea integration", "main": "lib/index.js", "types": "lib/index.d.ts",