diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md
index 1867b33..b34a180 100644
--- a/documentation/RELEASE_NOTES.md
+++ b/documentation/RELEASE_NOTES.md
@@ -1,4 +1,12 @@
## Release Notes
+## Release Notes for 0.5.2
+#### July 12, 2021
+* Features
+ * Native iOS SDK updated to 2.11.1
+ * Native Android SDK updated to 2.9.5
+ * Android push icon and accent color can now be specified in a more user-friendly way (by resource name instead of resource ID integer). New configuration parameters are available - `pushIconResourceName` and `pushAccentColorName`. In addition, accent color can be set with RGBA channels using the new configuration parameter `pushAccentColorRGBA`.
+
+
## Release Notes for 0.5.1
#### May 31, 2021
* Features
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 1f2aefa..ed909da 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -132,8 +132,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 2
- versionName "0.5.1"
+ versionCode 3
+ versionName "0.5.2"
multiDexEnabled true
}
splits {
diff --git a/example/ios/ExampleNotificationContent/Info.plist b/example/ios/ExampleNotificationContent/Info.plist
index 4bee875..5655693 100644
--- a/example/ios/ExampleNotificationContent/Info.plist
+++ b/example/ios/ExampleNotificationContent/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 0.5.1
+ 0.5.2
CFBundleVersion
- 2
+ 3
NSExtension
NSExtensionAttributes
diff --git a/example/ios/ExampleNotificationService/Info.plist b/example/ios/ExampleNotificationService/Info.plist
index 198995f..80b6b8b 100644
--- a/example/ios/ExampleNotificationService/Info.plist
+++ b/example/ios/ExampleNotificationService/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 0.5.1
+ 0.5.2
CFBundleVersion
- 2
+ 3
NSExtension
NSExtensionPointIdentifier
diff --git a/example/ios/example/Info.plist b/example/ios/example/Info.plist
index b4ae491..ba4e5b9 100644
--- a/example/ios/example/Info.plist
+++ b/example/ios/example/Info.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.5.1
+ 0.5.2
CFBundleSignature
????
CFBundleVersion
- 2
+ 3
LSRequiresIPhoneOS
NSAppTransportSecurity
diff --git a/package.json b/package.json
index 7379cbc..87433ad 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "react-native-exponea-sdk",
"title": "React Native Exponea Sdk",
- "version": "0.5.1",
+ "version": "0.5.2",
"description": "React native SDK for Exponea integration",
"main": "lib/index.js",
"types": "lib/index.d.ts",