From 568436f188cce1f119d67dad8c0c7a9cc8698aca Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 23 Jun 2022 22:38:26 -0500 Subject: [PATCH] Up minor version for release --- .../android/fastlane/metadata/android/en-US/changelogs/20.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/20.txt diff --git a/mobile/android/fastlane/metadata/android/en-US/changelogs/20.txt b/mobile/android/fastlane/metadata/android/en-US/changelogs/20.txt new file mode 100644 index 0000000000..2e06e4c6bf --- /dev/null +++ b/mobile/android/fastlane/metadata/android/en-US/changelogs/20.txt @@ -0,0 +1 @@ +* Fixed WebSocket endpoint to confirm with the new settings on the server \ No newline at end of file diff --git a/mobile/ios/fastlane/Fastfile b/mobile/ios/fastlane/Fastfile index 856677f9c2..8fc1ed9f0c 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.12.2" + version_number: "1.13.0" ) increment_build_number( build_number: latest_testflight_build_number + 1, diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index af2177141e..5e7d855a48 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.12.2+20 +version: 1.13.0+20 environment: sdk: ">=2.17.0 <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 3c38ceefad..7de061a8f9 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: 12, + minor: 13, patch: 0, - build: 18, + build: 20, };