diff --git a/CHANGELOG.md b/CHANGELOG.md index 78f6341ef..249d13d4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.1.19 +# 1.1.20 ## ✨ Features @@ -9,6 +9,22 @@ ## 🔧 Tech +# 1.1.19 + +## ✨ Features +* Allow mespapiers app to control clisk konnectors ([PR #1047](https://github.com/cozy/cozy-flagship-app/pull/1047)) + +## 🐛 Bug Fixes +* Fix send files locales ([PR #1031](https://github.com/cozy/cozy-flagship-app/pull/1031)) +* Fix UI bugs ([PR #1036](https://github.com/cozy/cozy-flagship-app/pull/1036), [PR #1037](https://github.com/cozy/cozy-flagship-app/pull/1037), [PR #1041](https://github.com/cozy/cozy-flagship-app/pull/1041), [PR #1043](https://github.com/cozy/cozy-flagship-app/pull/1043), [PR #1045](https://github.com/cozy/cozy-flagship-app/pull/1045)) +* Fix backup bugs especially when backup folder has been deleted ([PR #1040](https://github.com/cozy/cozy-flagship-app/pull/1040), [PR #1044](https://github.com/cozy/cozy-flagship-app/pull/1044)) +* Manage when destination folder is removed during konnector execution ([PR #1030](https://github.com/cozy/cozy-flagship-app/pull/1030)) + +## 🔧 Tech +* Improve logs ([PR #1035](https://github.com/cozy/cozy-flagship-app/pull/1035), [PR #1042](https://github.com/cozy/cozy-flagship-app/pull/1042), [PR #1039](https://github.com/cozy/cozy-flagship-app/pull/1039)) +* Remove react-native-cameraroll patches ([PR #1048](https://github.com/cozy/cozy-flagship-app/pull/1048)) +* Fix open handles in tests and update testing tools ([PR #1028](https://github.com/cozy/cozy-flagship-app/pull/1028)) + # 1.1.18 ## ✨ Features diff --git a/android/app/build.gradle b/android/app/build.gradle index a7e024b56..4cfa797e6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -143,8 +143,8 @@ android { namespace = "io.cozy.flagship.mobile" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 101189 - versionName "1.1.18" + versionCode 101190 + versionName "1.1.19" multiDexEnabled true resValue "string", "build_config_package", "io.cozy.flagship.mobile" } diff --git a/ios/CozyReactNative/Info.plist b/ios/CozyReactNative/Info.plist index 055940748..e58627f67 100644 --- a/ios/CozyReactNative/Info.plist +++ b/ios/CozyReactNative/Info.plist @@ -60,7 +60,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.18 + 1.1.19 CFBundleSignature ???? CFBundleURLTypes @@ -85,7 +85,7 @@ CFBundleVersion - 0101189 + 0101190 FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED FirebaseDataCollectionDefaultEnabled diff --git a/package.json b/package.json index c1aeb4b30..382750601 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cozy-react-native", - "version": "1.1.18", + "version": "1.1.19", "private": true, "scripts": { "android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",