From cdf2317490de3a5f84da52cafce00621e93d298f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Poizat?= Date: Wed, 10 Jul 2024 11:10:20 +0200 Subject: [PATCH] feat: Bump app version to 1.1.29 --- CHANGELOG.md | 17 ++++++++++++++++- android/app/build.gradle | 4 ++-- ios/CozyReactNative/Info.plist | 4 ++-- package.json | 2 +- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd130e98..7629eb811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.1.29 +# 1.1.30 ## ✨ Features @@ -9,6 +9,21 @@ ## 🔧 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)) +* 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)) +* 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)) + # 1.1.28 ## ✨ Features diff --git a/android/app/build.gradle b/android/app/build.gradle index b7e8cf739..d7db27d9f 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 101291 * 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..4076e0eaa 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 + 0101291 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",