瀏覽代碼

Up minor version for release

Alex 3 年之前
父節點
當前提交
568436f188

+ 1 - 0
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

+ 1 - 1
mobile/ios/fastlane/Fastfile

@@ -19,7 +19,7 @@ platform :ios do
   desc "iOS Beta"
   desc "iOS Beta"
   lane :beta do
   lane :beta do
     increment_version_number(
     increment_version_number(
-      version_number: "1.12.2"
+      version_number: "1.13.0"
     )
     )
     increment_build_number(
     increment_build_number(
       build_number: latest_testflight_build_number + 1,
       build_number: latest_testflight_build_number + 1,

+ 1 - 1
mobile/pubspec.yaml

@@ -2,7 +2,7 @@ name: immich_mobile
 description: Immich - selfhosted backup media file on mobile phone
 description: Immich - selfhosted backup media file on mobile phone
 
 
 publish_to: "none"
 publish_to: "none"
-version: 1.12.2+20
+version: 1.13.0+20
 
 
 environment:
 environment:
   sdk: ">=2.17.0 <3.0.0"
   sdk: ">=2.17.0 <3.0.0"

+ 2 - 2
server/apps/immich/src/constants/server_version.constant.ts

@@ -3,7 +3,7 @@
 
 
 export const serverVersion = {
 export const serverVersion = {
   major: 1,
   major: 1,
-  minor: 12,
+  minor: 13,
   patch: 0,
   patch: 0,
-  build: 18,
+  build: 20,
 };
 };