Up version for release
This commit is contained in:
parent
7e8bf94543
commit
434770155f
5 changed files with 9 additions and 7 deletions
|
@ -30,8 +30,8 @@ platform :android do
|
|||
task: 'bundle',
|
||||
build_type: 'Release',
|
||||
properties: {
|
||||
"android.injected.version.code" => 41,
|
||||
"android.injected.version.name" => "1.28.3",
|
||||
"android.injected.version.code" => 42,
|
||||
"android.injected.version.name" => "1.29.0",
|
||||
}
|
||||
)
|
||||
upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab')
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
* Fixed Android BackgroundServiceStartNotAllowedException
|
||||
* Restore old cache mechanism
|
|
@ -19,7 +19,7 @@ platform :ios do
|
|||
desc "iOS Beta"
|
||||
lane :beta do
|
||||
increment_version_number(
|
||||
version_number: "1.28.3"
|
||||
version_number: "1.29.0"
|
||||
)
|
||||
increment_build_number(
|
||||
build_number: latest_testflight_build_number + 1,
|
||||
|
|
|
@ -2,7 +2,7 @@ name: immich_mobile
|
|||
description: Immich - selfhosted backup media file on mobile phone
|
||||
|
||||
publish_to: "none"
|
||||
version: 1.28.3+41
|
||||
version: 1.29.0+42
|
||||
|
||||
environment:
|
||||
sdk: ">=2.17.0 <3.0.0"
|
||||
|
|
|
@ -10,7 +10,7 @@ export interface IServerVersion {
|
|||
|
||||
export const serverVersion: IServerVersion = {
|
||||
major: 1,
|
||||
minor: 28,
|
||||
patch: 4,
|
||||
build: 41,
|
||||
minor: 29,
|
||||
patch: 0,
|
||||
build: 42,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue