diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0e0c406e8..cc0958d50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,35 @@
+# 1.1.15
+
+## ✨ Features
+
+
+## 🐛 Bug Fixes
+
+
+## 🔧 Tech
+
+
 # 1.1.14
 
 ## ✨ Features
 
+* Implement email login for OIDC accounts ([PR #949](https://github.com/cozy/cozy-react-native/pull/949))
+* Add login authorization check based on the total connected devices for the account ([PR #900](https://github.com/cozy/cozy-react-native/pull/900), [PR #955](https://github.com/cozy/cozy-react-native/pull/955), [PR #954](https://github.com/cozy/cozy-react-native/pull/954) and [PR #954](https://github.com/cozy/cozy-react-native/pull/954))
 
 ## 🐛 Bug Fixes
 
+* Fix a bug that can make the app to freeze when running some Client Side Connectors ([PR #932](https://github.com/cozy/cozy-react-native/pull/932))
+* Fix a bug that could prevent the SplashScreen to be hiden on app start ([PR #931](https://github.com/cozy/cozy-react-native/pull/931))
+* Fix some bugs related to Backup feature ([PR #942](https://github.com/cozy/cozy-react-native/pull/942))
+* Fix how file names conflicts are handled in the Backup feature ([PR #950](https://github.com/cozy/cozy-react-native/pull/950))
+* Fix a crash that could occurs when resuming the app after a long period of inactivity ([PR #946](https://github.com/cozy/cozy-react-native/pull/946))
 
 ## 🔧 Tech
 
+* Add white label mechanism to customize the application ([PR #926](https://github.com/cozy/cozy-react-native/pull/926), [PR #929](https://github.com/cozy/cozy-react-native/pull/929), [PR #933](https://github.com/cozy/cozy-react-native/pull/933), [PR #930](https://github.com/cozy/cozy-react-native/pull/930), [PR #940](https://github.com/cozy/cozy-react-native/pull/940), [PR #936](https://github.com/cozy/cozy-react-native/pull/936), [PR #937](https://github.com/cozy/cozy-react-native/pull/937), [PR #941](https://github.com/cozy/cozy-react-native/pull/941), [PR #939](https://github.com/cozy/cozy-react-native/pull/939), [PR #943](https://github.com/cozy/cozy-react-native/pull/943), [PR #945](https://github.com/cozy/cozy-react-native/pull/945), [PR #948](https://github.com/cozy/cozy-react-native/pull/948), [PR #947](https://github.com/cozy/cozy-react-native/pull/947), [PR #953](https://github.com/cozy/cozy-react-native/pull/953), [PR #944](https://github.com/cozy/cozy-react-native/pull/944) and [PR #957](https://github.com/cozy/cozy-react-native/pull/957))
+* Add installation instructions for developpers using M1/M2 macs ([PR #926](https://github.com/cozy/cozy-react-native/pull/926))
+* Add foundations for file deduplication in the Backup feature ([PR #951](https://github.com/cozy/cozy-react-native/pull/951))
+* Change log level for `checkInitialParam` console alert ([PR #958](https://github.com/cozy/cozy-react-native/pull/958))
 
 # 1.1.13
 
diff --git a/android/app/build.gradle b/android/app/build.gradle
index f6cee664f..d22c600f3 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -140,8 +140,8 @@ android {
         namespace = "io.cozy.flagship.mobile"
         minSdkVersion rootProject.ext.minSdkVersion
         targetSdkVersion rootProject.ext.targetSdkVersion
-        versionCode 101134
-        versionName "1.1.13"
+        versionCode 101140
+        versionName "1.1.14"
         multiDexEnabled true
         resValue "string", "build_config_package", "io.cozy.flagship.mobile"
     }
diff --git a/ios/CozyReactNative/Info.plist b/ios/CozyReactNative/Info.plist
index 698842983..4f3cf8865 100644
--- a/ios/CozyReactNative/Info.plist
+++ b/ios/CozyReactNative/Info.plist
@@ -56,7 +56,7 @@
 	<key>CFBundlePackageType</key>
 	<string>APPL</string>
 	<key>CFBundleShortVersionString</key>
-	<string>1.1.13</string>
+	<string>1.1.14</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleURLTypes</key>
@@ -75,7 +75,7 @@
 		</dict>
 	</array>
 	<key>CFBundleVersion</key>
-	<string>0101134</string>
+	<string>0101140</string>
 	<key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key>
 	<true/>
 	<key>FirebaseDataCollectionDefaultEnabled</key>
diff --git a/package.json b/package.json
index 1d3c6feb3..791f9b6d6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cozy-react-native",
-  "version": "1.1.13",
+  "version": "1.1.14",
   "private": true,
   "scripts": {
     "android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",