diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml
index 534c43535..33a030f39 100644
--- a/.github/workflows/build-android.yml
+++ b/.github/workflows/build-android.yml
@@ -89,6 +89,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.${{ github.event.inputs.profile == 'production' && 'aab' || 'apk' }}
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
npm_config_node_linker: isolated
npm_config_shamefully_hoist: "false"
diff --git a/.github/workflows/build-ios-development.yml b/.github/workflows/build-ios-development.yml
index ea36bd02f..68249cd0e 100644
--- a/.github/workflows/build-ios-development.yml
+++ b/.github/workflows/build-ios-development.yml
@@ -58,6 +58,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
CI: true
@@ -114,6 +115,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
CI: true
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
@@ -164,6 +166,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform ios --profile ios-simulator --non-interactive --local --output=./build-simulator.ipa
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
CI: true
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml
index ab3a25e85..5d112ed89 100644
--- a/.github/workflows/build-ios.yml
+++ b/.github/workflows/build-ios.yml
@@ -66,6 +66,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
CI: true
@@ -127,6 +128,7 @@ jobs:
working-directory: apps/mobile
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
env:
+ EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
EAS_NO_FROZEN_LOCKFILE: "1"
CI: true
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
diff --git a/apps/mobile/changelog/0.5.1.md b/apps/mobile/changelog/0.5.1.md
new file mode 100644
index 000000000..39f611b06
--- /dev/null
+++ b/apps/mobile/changelog/0.5.1.md
@@ -0,0 +1,10 @@
+# What's New in v0.5.1
+
+## Shiny new things
+
+- Added OTA version details to About
+
+## No longer broken
+
+- Fixed session refresh after cookie updates
+- Extended API request timeouts
diff --git a/apps/mobile/ios/Folo/Info.plist b/apps/mobile/ios/Folo/Info.plist
index 8c92f272c..adbe405d6 100644
--- a/apps/mobile/ios/Folo/Info.plist
+++ b/apps/mobile/ios/Folo/Info.plist
@@ -33,7 +33,7 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 0.5.0
+ 0.5.1
CFBundleSignature
????
CFBundleURLTypes
@@ -54,7 +54,7 @@
CFBundleVersion
- 3
+ 4
ITSAppUsesNonExemptEncryption
LSApplicationCategoryType
diff --git a/apps/mobile/package.json b/apps/mobile/package.json
index 1556f1662..afdc09e01 100644
--- a/apps/mobile/package.json
+++ b/apps/mobile/package.json
@@ -1,6 +1,6 @@
{
"name": "@follow/mobile",
- "version": "0.5.0",
+ "version": "0.5.1",
"private": true,
"main": "src/main.tsx",
"scripts": {
diff --git a/apps/mobile/release.json b/apps/mobile/release.json
index ad73f619b..1c949a3d2 100644
--- a/apps/mobile/release.json
+++ b/apps/mobile/release.json
@@ -1,6 +1,6 @@
{
- "version": "0.5.0",
- "mode": "store",
- "runtimeVersion": null,
- "channel": null
+ "version": "0.5.1",
+ "mode": "ota",
+ "runtimeVersion": "0.5.0",
+ "channel": "production"
}