From 4003c2e35141283e2047e04dbf41f74bb2165f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Poizat?= Date: Fri, 15 Nov 2024 11:52:31 +0100 Subject: [PATCH] feat: Bump app version to 1.1.31 --- CHANGELOG.md | 21 +++++++++++++++++++++ android/app/build.gradle | 4 ++-- ios/CozyReactNative/Info.plist | 4 ++-- package.json | 2 +- 4 files changed, 26 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02c9ad5d6..d4e2bc712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,34 @@ +# 1.1.32 + +## ✨ Features + + +## 🐛 Bug Fixes + + +## 🔧 Tech + + # 1.1.31 ## ✨ Features +* Allow clisk konnectors to save data in their own account ([PR #1260](https://github.com/cozy/cozy-flagship-app/pull/1260)) +* Allow clisk konnectors to run server job ([PR #1260](https://github.com/cozy/cozy-flagship-app/pull/1260)) +* Allow clisk konnectors to have incognito mode ([PR #1260](https://github.com/cozy/cozy-flagship-app/pull/1260)) +* Do not download the same file multiple times when multiple bills are related to the same file ([PR #1259](https://github.com/cozy/cozy-flagship-app/pull/1259)) +* Force logout when konnector identifier is different from account name (to allow multi-account for clisk konnectors) ([PR #1255](https://github.com/cozy/cozy-flagship-app/pull/1255)) +* Offers the possibility to save html traces on clisk konnector error ([PR #1254](https://github.com/cozy/cozy-flagship-app/pull/1254)) ## 🐛 Bug Fixes ## 🔧 Tech +* Upgrade cozy-clisk to 0.38.1 ([PR #1259](https://github.com/cozy/cozy-flagship-app/pull/1259)) +* Update Sentry to 5.33.1 ([PR #1252](https://github.com/cozy/cozy-flagship-app/pull/1252)) +* Remove ui.darkmode.enabled flag condition ([PR #1246](https://github.com/cozy/cozy-flagship-app/pull/1246)) + # 1.1.30 ## ✨ Features diff --git a/android/app/build.gradle b/android/app/build.gradle index ec86e45d6..38644954e 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 101300 * 10000 // Legacy version number patch, needed for Play Store version increment - versionName "1.1.30" + versionCode 101316 * 10000 // Legacy version number patch, needed for Play Store version increment + versionName "1.1.31" 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 ae2a7d71e..53ed892ae 100644 --- a/ios/CozyReactNative/Info.plist +++ b/ios/CozyReactNative/Info.plist @@ -60,7 +60,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.30 + 1.1.31 CFBundleSignature ???? CFBundleURLTypes @@ -85,7 +85,7 @@ CFBundleVersion - 0101300 + 0101316 FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED FirebaseDataCollectionDefaultEnabled diff --git a/package.json b/package.json index 7773315a4..bf952da2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cozy-react-native", - "version": "1.1.30", + "version": "1.1.31", "private": true, "scripts": { "android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",