diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 1493381..20cfaa2 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 27f4195..6589042 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -1,6 +1,17 @@ ## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md) ## Release Notes +## Release Notes for 1.5.1 +#### June 08, 2023 +* Features + * App Inbox styling used directly from native SDKs +* Bug Fixes + * Fixed: Swift path fixed for XCode14.2+ in iOS part + * Fixed: RN 71.8 has been used for any Android build; Now a REACT_NATIVE_VERSION guides a build process + * Fixed: Android app build was crashing because of unnecessary codegenConfig + * Fixed: Adding of Firebase dependency was missing from migration documentations + + ## Release Notes for 1.5.0 #### May 23, 2023 * Features diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 541e600..7a84254 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 12 - versionName "1.5.0" + versionCode 13 + versionName "1.5.1" multiDexEnabled true } splits { diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist index 9b85166..07cf2b7 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.0 + 1.5.1 CFBundleVersion - 12 + 13 NSExtension NSExtensionAttributes diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist index 6f3b7c9..d7d4bc7 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.0 + 1.5.1 CFBundleVersion - 12 + 13 NSExtension NSExtensionPointIdentifier diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist index bfb0117..c9e3b05 100644 --- a/example/ios/example/Info.plist +++ b/example/ios/example/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.0 + 1.5.1 CFBundleSignature ???? CFBundleVersion - 12 + 13 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/ios/Exponea.swift b/ios/Exponea.swift index 36927d5..6cb0ff8 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.0" + "1.5.1" } } diff --git a/package.json b/package.json index fbccbb9..5490306 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-exponea-sdk", "title": "React Native Exponea Sdk", - "version": "1.5.0", + "version": "1.5.1", "description": "React native SDK for Exponea integration", "main": "lib/index.js", "types": "lib/index.d.ts",