From 3511b69fc83e42e177f511e8c199a443f1bb3853 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 18 Jun 2022 09:56:56 -0500 Subject: [PATCH] Up Minor Version --- .../android/fastlane/metadata/android/en-US/changelogs/18.txt | 1 + mobile/ios/fastlane/Fastfile | 2 +- mobile/pubspec.yaml | 2 +- server/apps/immich/src/constants/server_version.constant.ts | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 mobile/android/fastlane/metadata/android/en-US/changelogs/18.txt diff --git a/mobile/android/fastlane/metadata/android/en-US/changelogs/18.txt b/mobile/android/fastlane/metadata/android/en-US/changelogs/18.txt new file mode 100644 index 0000000000..d8a6b3f614 --- /dev/null +++ b/mobile/android/fastlane/metadata/android/en-US/changelogs/18.txt @@ -0,0 +1 @@ +* Fixed crash issue when upload large file on slow network \ No newline at end of file diff --git a/mobile/ios/fastlane/Fastfile b/mobile/ios/fastlane/Fastfile index a420a9b677..c8e5f70682 100644 --- a/mobile/ios/fastlane/Fastfile +++ b/mobile/ios/fastlane/Fastfile @@ -19,7 +19,7 @@ platform :ios do desc "iOS Beta" lane :beta do increment_version_number( - version_number: "1.11.0" + version_number: "1.12.0" ) increment_build_number( build_number: latest_testflight_build_number + 1, diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index bb3e19c5ba..46a1787fa3 100644 --- a/mobile/pubspec.yaml +++ b/mobile/pubspec.yaml @@ -2,7 +2,7 @@ name: immich_mobile description: Immich - selfhosted backup media file on mobile phone publish_to: "none" -version: 1.11.0+17 +version: 1.12.0+18 environment: sdk: ">=2.15.1 <3.0.0" diff --git a/server/apps/immich/src/constants/server_version.constant.ts b/server/apps/immich/src/constants/server_version.constant.ts index 97b113bdf2..3c38ceefad 100644 --- a/server/apps/immich/src/constants/server_version.constant.ts +++ b/server/apps/immich/src/constants/server_version.constant.ts @@ -3,7 +3,7 @@ export const serverVersion = { major: 1, - minor: 11, + minor: 12, patch: 0, - build: 17, + build: 18, };