diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml
index 2f4431e..1817955 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 e73899d..ad3bb71 100644
--- a/documentation/RELEASE_NOTES.md
+++ b/documentation/RELEASE_NOTES.md
@@ -1,4 +1,15 @@
## Release Notes
+## Release Notes for 1.1.0
+#### September 01, 2022
+* Features
+ * Added a support of HTML InApp messages
+ * Shows a warn log for developer if old SDK version is used
+* Bug Fixes
+ * Fixed: Version upgrade guide is linked from README and Release Notes documentations
+ * Fixed: License established to MIT
+ * Fixed: Duplicated push open action track is not called on app cold start
+
+
## :arrow_double_up: [SDK version update guide](./VERSION_UPDATE.md)
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 5491593..9dcceea 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -138,8 +138,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 4
- versionName "1.0.0"
+ versionCode 5
+ versionName "1.1.0"
multiDexEnabled true
}
splits {
diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist
index 56a8dc4..ba12687 100644
--- a/example/ios/ExampleNotificationContent/Info.plist
+++ b/example/ios/ExampleNotificationContent/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.0.0
+ 1.1.0
CFBundleVersion
- 4
+ 5
NSExtension
NSExtensionAttributes
diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist
index 8c089dd..c3f16f4 100644
--- a/example/ios/ExampleNotificationService/Info.plist
+++ b/example/ios/ExampleNotificationService/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.0.0
+ 1.1.0
CFBundleVersion
- 4
+ 5
NSExtension
NSExtensionPointIdentifier
diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist
index 3081f65..52e3e2e 100644
--- a/example/ios/example/Info.plist
+++ b/example/ios/example/Info.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.0.0
+ 1.1.0
CFBundleSignature
????
CFBundleVersion
- 4
+ 5
LSRequiresIPhoneOS
NSAppTransportSecurity
diff --git a/ios/Exponea.swift b/ios/Exponea.swift
index b4f1f85..81e6fd5 100644
--- a/ios/Exponea.swift
+++ b/ios/Exponea.swift
@@ -17,7 +17,7 @@ protocol IsExponeaReactNativeSDK {
public class ExponeaRNVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
- "1.0.0"
+ "1.1.0"
}
}
diff --git a/package.json b/package.json
index 8f482b4..e8f72df 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "react-native-exponea-sdk",
"title": "React Native Exponea Sdk",
- "version": "1.0.0",
+ "version": "1.1.0",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",