diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6cd130e98..4a5759d84 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# 1.1.29
+# 1.1.30
## ✨ Features
@@ -9,6 +9,23 @@
## 🔧 Tech
+# 1.1.29
+
+## ✨ Features
+
+
+## 🐛 Bug Fixes
+
+
+## 🔧 Tech
+* Full dark mode support. Not enabled generally for the moment. ([PR #1222](https://github.com/cozy/cozy-flagship-app/pull/1222), [PR #1223](https://github.com/cozy/cozy-flagship-app/pull/1223), [PR #1228](https://github.com/cozy/cozy-flagship-app/pull/1228), [PR #1231](https://github.com/cozy/cozy-flagship-app/pull/1231))
+* Update to React Native 0.72.12 ([PR #1161](https://github.com/cozy/cozy-flagship-app/pull/1161))
+* Target Android API 34 ([PR #1225](https://github.com/cozy/cozy-flagship-app/pull/1225), [PR #1232](https://github.com/cozy/cozy-flagship-app/pull/1232))
+* Add check on language files and add missing translations for en and es files ([PR #999](https://github.com/cozy/cozy-flagship-app/pull/999))
+* Update react-native-background-geolocation ([PR #1227](https://github.com/cozy/cozy-flagship-app/pull/1227))
+* Fix build related to react-native-gzip ([PR #1229](https://github.com/cozy/cozy-flagship-app/pull/1229))
+* Fix build related to AndroidManifest ([PR #1230](https://github.com/cozy/cozy-flagship-app/pull/1230))
+
# 1.1.28
## ✨ Features
diff --git a/android/app/build.gradle b/android/app/build.gradle
index b7e8cf739..bd2a56b95 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 101282 * 10000 // Legacy version number patch, needed for Play Store version increment
- versionName "1.1.28"
+ versionCode 101295 * 10000 // Legacy version number patch, needed for Play Store version increment
+ versionName "1.1.29"
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 ddebf9aed..59be93e5d 100644
--- a/ios/CozyReactNative/Info.plist
+++ b/ios/CozyReactNative/Info.plist
@@ -60,7 +60,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.1.28
+ 1.1.29
CFBundleSignature
????
CFBundleURLTypes
@@ -85,7 +85,7 @@
CFBundleVersion
- 0101282
+ 0101295
FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED
FirebaseDataCollectionDefaultEnabled
diff --git a/package.json b/package.json
index 80821bf9c..932b0b03d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cozy-react-native",
- "version": "1.1.28",
+ "version": "1.1.29",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",