diff --git a/CHANGELOG.md b/CHANGELOG.md
index 39300d665..62248c6dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,32 @@
+# 1.1.6
+
+## 🐛 Bug Fixes
+
+* Ensure that the splashscreen doesn't hide early on the homescreen [PR #820](https://github.com/cozy/cozy-flagship-app/pull/820)
+* Add round mabulle icon for Android [PR #822](https://github.com/cozy/cozy-flagship-app/pull/822)
+
+# 1.1.5
+
+## ✨ Features
+
+* Display a modal to show when app icon changed [PR #816](https://github.com/cozy/cozy-flagship-app/pull/816)
+* Customize default icon remotely [PR #816](https://github.com/cozy/cozy-flagship-app/pull/816)
+
+## 🐛 Bug Fixes
+
+* Ensure that the Application splash screen is correctly hidden in all scenarios [PR #819](https://github.com/cozy/cozy-flagship-app/pull/819)
+
+# 1.1.4
+
+## ✨ Features
+
+* Upgrade cozy-clisk to `0.13.0` to get subPath [PR #814](https://github.com/cozy/cozy-flagship-app/pull/814)
+
+## 🐛 Bug Fixes
+
+* Enhancing app lockingmechanism and handling edge cases by @acezard [PR #815](https://github.com/cozy/cozy-flagship-app/pull/815)
+* Set launcherview header to display dark icons on white background [PR #817](https://github.com/cozy/cozy-flagship-app/pull/817)
+
# 1.1.3
## ✨ Features
@@ -5,9 +34,14 @@
## 🐛 Bug Fixes
+* Fix UI issues on password and PIN prompts ([PR #799](https://github.com/cozy/cozy-react-native/pull/799), [PR #801](https://github.com/cozy/cozy-react-native/pull/801), [PR #805](https://github.com/cozy/cozy-react-native/pull/805), [PR #806](https://github.com/cozy/cozy-react-native/pull/806), [PR #807](https://github.com/cozy/cozy-react-native/pull/807) and [PR #808](https://github.com/cozy/cozy-react-native/pull/808))
+* Fix a bug that prevented CLient Side Connectors logs to be handled correctly ([PR #802](https://github.com/cozy/cozy-react-native/pull/802))
+* Document scanning now correctly returns the last scan when multiple tries are done ([PR #803](https://github.com/cozy/cozy-react-native/pull/803))
## 🔧 Tech
+* Update `cozy-clisk` to `0.12.2` ([PR #800](https://github.com/cozy/cozy-react-native/pull/800))
+* Improve developers documentation ([PR #784](https://github.com/cozy/cozy-react-native/pull/784))
# 1.1.2
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 264816bc0..d52720c84 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -137,8 +137,8 @@ android {
applicationId "io.cozy.flagship.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 101021
- versionName "1.1.2"
+ versionCode 101062
+ versionName "1.1.6"
multiDexEnabled true
}
splits {
diff --git a/ios/CozyReactNative/Info.plist b/ios/CozyReactNative/Info.plist
index fd3214d7e..2eb009244 100644
--- a/ios/CozyReactNative/Info.plist
+++ b/ios/CozyReactNative/Info.plist
@@ -65,7 +65,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.1.2
+ 1.1.6
CFBundleSignature
????
CFBundleURLTypes
@@ -84,7 +84,7 @@
CFBundleVersion
- 0101021
+ 0101062
FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED
FirebaseDataCollectionDefaultEnabled
diff --git a/package.json b/package.json
index d0fa4cd01..bc0a34c56 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cozy-react-native",
- "version": "1.1.2",
+ "version": "1.1.6",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitycozy",