From 021d51f81834c52533e85e2284b967fa79448d28 Mon Sep 17 00:00:00 2001
From: adam1929 <103995671+adam1929@users.noreply.github.com>
Date: Thu, 13 Jul 2023 11:17:59 +0200
Subject: [PATCH] feat/Version 1.5.2
---
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 20cfaa2..18ae44a 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 6589042..37dd68c 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.5.2
+#### July 13, 2023
+* Features
+ * Native iOS SDK updated to 2.16.4 version to XCode 14.3 support
+* Bug Fixes
+ * Fixed: Peer dependency to react was invalid
+
+
## Release Notes for 1.5.1
#### June 08, 2023
* Features
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 7a84254..1c2c3e8 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 13
- versionName "1.5.1"
+ versionCode 14
+ versionName "1.5.2"
multiDexEnabled true
}
splits {
diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist
index 07cf2b7..cadeff2 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.1
+ 1.5.2
CFBundleVersion
- 13
+ 14
NSExtension
NSExtensionAttributes
diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist
index d7d4bc7..ea3c843 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.1
+ 1.5.2
CFBundleVersion
- 13
+ 14
NSExtension
NSExtensionPointIdentifier
diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist
index c9e3b05..fe96e94 100644
--- a/example/ios/example/Info.plist
+++ b/example/ios/example/Info.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.5.1
+ 1.5.2
CFBundleSignature
????
CFBundleVersion
- 13
+ 14
LSRequiresIPhoneOS
NSAppTransportSecurity
diff --git a/ios/Exponea.swift b/ios/Exponea.swift
index 6cb0ff8..134f9a9 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.1"
+ "1.5.2"
}
}
diff --git a/package.json b/package.json
index 6c98feb..ba2fa08 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "react-native-exponea-sdk",
"title": "React Native Exponea Sdk",
- "version": "1.5.1",
+ "version": "1.5.2",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",