diff --git a/CHANGELOG.md b/CHANGELOG.md
index b20581277..d3c0d9910 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# 1.1.28
+# 1.1.29
## ✨ Features
@@ -8,6 +8,21 @@
## 🔧 Tech
+
+# 1.1.28
+
+## ✨ Features
+
+
+## 🐛 Bug Fixes
+* Mes Papiers could crash during a document scan due to low memory ([PR #1208](https://github.com/cozy/cozy-flagship-app/pull/1208), [PR #1219](https://github.com/cozy/cozy-flagship-app/pull/1219))
+* Sharing files to the app was not working properly on Ma Bulle app on iOS ([PR #1213](https://github.com/cozy/cozy-flagship-app/pull/1213))
+
+## 🔧 Tech
+* Partial dark mode support. Not enabled generally for the moment. ([PR #1214](https://github.com/cozy/cozy-flagship-app/pull/1214), [PR #1215](https://github.com/cozy/cozy-flagship-app/pull/1215), [PR #1217](https://github.com/cozy/cozy-flagship-app/pull/1217))
+* Give the list of instance's flags to the context sent to konnectors ([PR #1211](https://github.com/cozy/cozy-flagship-app/pull/1211))
+* Move saved traceFiles into `Settings/Logs` directory to avoid user confusion about the file presence ([PR #1210](https://github.com/cozy/cozy-flagship-app/pull/1210))
+
# 1.1.27
## ✨ Features
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 94ee99283..bc8ddafd2 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -138,8 +138,8 @@ android {
namespace = "io.cozy.flagship.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 101270 * 10000 // Legacy version number patch, needed for Play Store version increment
- versionName "1.1.27"
+ versionCode 101281 * 10000 // Legacy version number patch, needed for Play Store version increment
+ versionName "1.1.28"
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 7066494b1..2ef36f370 100644
--- a/ios/CozyReactNative/Info.plist
+++ b/ios/CozyReactNative/Info.plist
@@ -60,7 +60,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.1.27
+ 1.1.28
CFBundleSignature
????
CFBundleURLTypes
@@ -85,7 +85,7 @@
CFBundleVersion
- 0101271
+ 0101281
FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED
FirebaseDataCollectionDefaultEnabled
diff --git a/package.json b/package.json
index 9fcde9a51..097ca0a20 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cozy-react-native",
- "version": "1.1.27",
+ "version": "1.1.28",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",