Skip to content

Commit

Permalink
feat/Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Oct 17, 2024
1 parent 5196b86 commit 326763a
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
</intent-filter>
</receiver>
<meta-data android:name="ExponeaReactNativeSDK" android:value="true" />
<meta-data android:name="ExponeaReactNativeSDKVersion" android:value="1.9.0"/>
<meta-data android:name="ExponeaReactNativeSDKVersion" android:value="2.0.0"/>
</application>
</manifest>
14 changes: 13 additions & 1 deletion documentation/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,21 @@ parentDocSlug: react-native-sdk

> 📘
>
> Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/react-native-sdk-version-update) for details on updating from version 0.x.x to 1.x.x.
> Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/react-native-sdk-version-update) for details on updating to the next major version.
## Release Notes
## Release Notes for 2.0.0
#### October 17, 2024
* Added:
* Updates native iOS SDK to 3.0.0 and native Android SDK to 4.0.1.
* Improves the behavior of the Segmentation API’s getSegments method.
* Adds a manualSessionAutoClose configuration parameter to override automatic session end tracking for open sessions when sessionStart is called multiple times.
* Updates the default session timeout to 60 seconds.
* Adds the identification of Cancel button clicks in In-app message close events and inclusion of the button label in the tracked event.
* Adds React Native-specific message service implementation details to push notification documentation.
* Adds documentation improvements.


## Release Notes for 1.9.0
#### September 10, 2024
* Added:
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 21
versionName "1.9.0"
versionCode 22
versionName "2.0.0"
}
signingConfigs {
debug {
Expand Down
4 changes: 2 additions & 2 deletions example/ios/ExampleNotificationContent/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>2.0.0</string>
<key>CFBundleVersion</key>
<string>21</string>
<string>22</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
4 changes: 2 additions & 2 deletions example/ios/ExampleNotificationService/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>2.0.0</string>
<key>CFBundleVersion</key>
<string>21</string>
<string>22</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions example/ios/example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>2.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>21</string>
<string>22</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/Exponea.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protocol IsExponeaReactNativeSDK {
public class ExponeaRNVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
"1.9.0"
"2.0.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-exponea-sdk",
"title": "React Native Exponea Sdk",
"version": "1.9.0",
"version": "2.0.0",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 326763a

Please sign in to comment.