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.30 #1242

Merged
merged 1 commit into from
Sep 16, 2024
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
# 1.1.30
# 1.1.31

## ✨ Features


## 🐛 Bug Fixes


## 🔧 Tech

# 1.1.30

## ✨ Features


## 🐛 Bug Fixes
* Fixes a race condition leading to a blue screen ([PR #1241](https://github.com/cozy/cozy-flagship-app/pull/1241))

## 🔧 Tech


Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ android {
// if absent use `yarn brand:configure:cozy` to create it
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 101295 * 10000 // Legacy version number patch, needed for Play Store version increment
versionName "1.1.29"
versionCode 101300 * 10000 // Legacy version number patch, needed for Play Store version increment
versionName "1.1.30"
multiDexEnabled true
resValue "string", "build_config_package", "io.cozy.flagship.mobile"
missingDimensionStrategy "store", "play"
Expand Down
4 changes: 2 additions & 2 deletions ios/CozyReactNative/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.29</string>
<string>1.1.30</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -85,7 +85,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0101295</string>
<string>0101300</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.29",
"version": "1.1.30",
"private": true,
"scripts": {
"android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",
Expand Down
Loading