Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Bump app version to 1.1.13 #934

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
# 1.1.14

## ✨ Features


## 🐛 Bug Fixes


## 🔧 Tech


# 1.1.13

## ✨ Features


## 🐛 Bug Fixes

* Fix a bug that prevented Client Side Connectors to download files ([PR #902](https://github.com/cozy/cozy-react-native/pull/902))
* Fix a bug that prevented notifications to work on Android 13 ([PR #911](https://github.com/cozy/cozy-flagship-app/pull/911))
* Correctly hide lock screen when navigating to a default cozy-app ([PR #901](https://github.com/cozy/cozy-react-native/pull/901))
* Correctly check log level for Client Side Connectors to avoid crash ([PR #910](https://github.com/cozy/cozy-flagship-app/pull/910))
* Fix a bug where notification permission could lead to a blank screen on Android 13 ([PR #918](https://github.com/cozy/cozy-flagship-app/pull/918))
* Fix FR translations ([PR #922](https://github.com/cozy/cozy-flagship-app/pull/922))

## 🔧 Tech

* Change Android's target SDK from `31` to `33` ([PR #904](https://github.com/cozy/cozy-react-native/pull/904))
* Improve foundations for photo and video backup ([PR #903](https://github.com/cozy/cozy-flagship-app/pull/903), [PR #905](https://github.com/cozy/cozy-flagship-app/pull/905), [PR #908](https://github.com/cozy/cozy-flagship-app/pull/908), [PR #913](https://github.com/cozy/cozy-flagship-app/pull/913), [PR #914](https://github.com/cozy/cozy-flagship-app/pull/914), [PR #915](https://github.com/cozy/cozy-flagship-app/pull/915), [PR #917](https://github.com/cozy/cozy-flagship-app/pull/917), [PR #919](https://github.com/cozy/cozy-flagship-app/pull/919), [PR #920](https://github.com/cozy/cozy-flagship-app/pull/920), [PR #921](https://github.com/cozy/cozy-flagship-app/pull/921), [PR #925](https://github.com/cozy/cozy-flagship-app/pull/925), [PR #928](https://github.com/cozy/cozy-flagship-app/pull/928))
* Improve and rename CI ([PR #923](https://github.com/cozy/cozy-flagship-app/pull/923), [PR #924](https://github.com/cozy/cozy-flagship-app/pull/924))

# 1.1.12

Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ android {
applicationId "io.cozy.flagship.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 101122
versionName "1.1.12"
versionCode 101134
versionName "1.1.13"
multiDexEnabled true
}
splits {
Expand Down
4 changes: 2 additions & 2 deletions ios/CozyReactNative/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.12</string>
<string>1.1.13</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -84,7 +84,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0101122</string>
<string>0101134</string>
<key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key>
<true/>
<key>FirebaseDataCollectionDefaultEnabled</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cozy-react-native",
"version": "1.1.12",
"version": "1.1.13",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitycozy",
Expand Down
Loading