From c6edf866aaaf4cd4fea2aed1a9a6180e15b96fe9 Mon Sep 17 00:00:00 2001
From: adam1929 <103995671+adam1929@users.noreply.github.com>
Date: Tue, 2 Jul 2024 15:16:43 +0200
Subject: [PATCH] feat/Version 1.8.2
---
android/src/main/AndroidManifest.xml | 2 +-
documentation/RELEASE_NOTES.md | 6 ++++++
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, 17 insertions(+), 11 deletions(-)
diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml
index 8ce2d84..be22f91 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 7842557..697c99b 100644
--- a/documentation/RELEASE_NOTES.md
+++ b/documentation/RELEASE_NOTES.md
@@ -1,6 +1,12 @@
## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md)
## Release Notes
+## Release Notes for 1.8.2
+#### July 02, 2024
+* Fixed:
+ * Fixes an issue with Segmentation API for not supported event type - Segmentation API refactored to be compatible with native modules
+
+
## Release Notes for 1.8.1
#### June 20, 2024
* Features
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 4f8aabb..99ae80f 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 19
- versionName "1.8.1"
+ versionCode 20
+ versionName "1.8.2"
multiDexEnabled true
}
splits {
diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist
index bb2d935..5c1ae9f 100644
--- a/example/ios/ExampleNotificationContent/Info.plist
+++ b/example/ios/ExampleNotificationContent/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.8.1
+ 1.8.2
CFBundleVersion
- 19
+ 20
NSExtension
NSExtensionAttributes
diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist
index 96cea6a..e68cf9f 100644
--- a/example/ios/ExampleNotificationService/Info.plist
+++ b/example/ios/ExampleNotificationService/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.8.1
+ 1.8.2
CFBundleVersion
- 19
+ 20
NSExtension
NSExtensionPointIdentifier
diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist
index 1ff0a78..b344e67 100644
--- a/example/ios/example/Info.plist
+++ b/example/ios/example/Info.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.8.1
+ 1.8.2
CFBundleSignature
????
CFBundleVersion
- 19
+ 20
LSRequiresIPhoneOS
NSAppTransportSecurity
diff --git a/ios/Exponea.swift b/ios/Exponea.swift
index fae5603..7b1a7c2 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.8.1"
+ "1.8.2"
}
}
diff --git a/package.json b/package.json
index f6bed52..1be00a9 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "react-native-exponea-sdk",
"title": "React Native Exponea Sdk",
- "version": "1.8.1",
+ "version": "1.8.2",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",