From cf2b9eddfa681b514e759eac40eca176e8ecec50 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Wed, 3 Aug 2022 15:43:42 -0500 Subject: [PATCH] Pump version 1.20 --- .../android/fastlane/metadata/android/en-US/changelogs/30.txt | 2 ++ mobile/pubspec.yaml | 2 +- server/apps/immich/src/constants/server_version.constant.ts | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 mobile/android/fastlane/metadata/android/en-US/changelogs/30.txt diff --git a/mobile/android/fastlane/metadata/android/en-US/changelogs/30.txt b/mobile/android/fastlane/metadata/android/en-US/changelogs/30.txt new file mode 100644 index 0000000000..c9c009c05e --- /dev/null +++ b/mobile/android/fastlane/metadata/android/en-US/changelogs/30.txt @@ -0,0 +1,2 @@ +* New feature - Gallery view now enable with swipping action +* New feature - Add album feature \ No newline at end of file diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index 59c2427803..dbe84f23af 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.19.0+29 +version: 1.20.0+30 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 6ba44620f2..52f53dc21a 100644 --- a/server/apps/immich/src/constants/server_version.constant.ts +++ b/server/apps/immich/src/constants/server_version.constant.ts @@ -10,7 +10,7 @@ export interface IServerVersion { export const serverVersion: IServerVersion = { major: 1, - minor: 19, - patch: 1, + minor: 20, + patch: 0, build: 0, };