Skip to content

Commit

Permalink
feat/Version 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Jun 8, 2023
1 parent f762d3a commit 13b4ef8
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 11 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.5.0"/>
<meta-data android:name="ExponeaReactNativeSDKVersion" android:value="1.5.1"/>
</application>
</manifest>
11 changes: 11 additions & 0 deletions documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
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 @@ -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 {
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.5.0</string>
<string>1.5.1</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</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.5.0</string>
<string>1.5.1</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</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.5.0</string>
<string>1.5.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</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.5.0"
"1.5.1"
}
}

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.5.0",
"version": "1.5.1",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 13b4ef8

Please sign in to comment.