diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4a5759d84..02c9ad5d6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# 1.1.30
+# 1.1.31
## ✨ Features
@@ -6,6 +6,16 @@
## 🐛 Bug Fixes
+## 🔧 Tech
+
+# 1.1.30
+
+## ✨ Features
+
+
+## 🐛 Bug Fixes
+* Fixes a race condition leading to a blue screen ([PR #1241](https://github.com/cozy/cozy-flagship-app/pull/1241))
+
## 🔧 Tech
diff --git a/android/app/build.gradle b/android/app/build.gradle
index bd2a56b95..ec86e45d6 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -99,8 +99,8 @@ android {
// if absent use `yarn brand:configure:cozy` to create it
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 101295 * 10000 // Legacy version number patch, needed for Play Store version increment
- versionName "1.1.29"
+ versionCode 101300 * 10000 // Legacy version number patch, needed for Play Store version increment
+ versionName "1.1.30"
multiDexEnabled true
resValue "string", "build_config_package", "io.cozy.flagship.mobile"
missingDimensionStrategy "store", "play"
diff --git a/ios/CozyReactNative/Info.plist b/ios/CozyReactNative/Info.plist
index 59be93e5d..ae2a7d71e 100644
--- a/ios/CozyReactNative/Info.plist
+++ b/ios/CozyReactNative/Info.plist
@@ -60,7 +60,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.1.29
+ 1.1.30
CFBundleSignature
????
CFBundleURLTypes
@@ -85,7 +85,7 @@
CFBundleVersion
- 0101295
+ 0101300
FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED
FirebaseDataCollectionDefaultEnabled
diff --git a/package.json b/package.json
index 932b0b03d..18cb0890e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cozy-react-native",
- "version": "1.1.29",
+ "version": "1.1.30",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",