Bump version to 2.5.3
This commit is contained in:
parent
d706187d86
commit
544cdb49fd
3 changed files with 4 additions and 4 deletions
4
.github/workflows/docker-publish.yml
vendored
4
.github/workflows/docker-publish.yml
vendored
|
|
@ -9,9 +9,9 @@ on:
|
|||
workflow_dispatch:
|
||||
inputs:
|
||||
version_tag:
|
||||
description: 'Version tag (e.g. 2.5.2)'
|
||||
description: 'Version tag (e.g. 2.5.3)'
|
||||
required: true
|
||||
default: '2.5.2'
|
||||
default: '2.5.3'
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ logger = setup_logging(_log_level, _log_path)
|
|||
|
||||
# App version — single source of truth for backup metadata, system-info, update check, etc.
|
||||
# Semver: MAJOR.MINOR.PATCH. Bump at each dev→main release.
|
||||
_SOULSYNC_BASE_VERSION = "2.5.2"
|
||||
_SOULSYNC_BASE_VERSION = "2.5.3"
|
||||
|
||||
def _build_version_string():
|
||||
"""Append short commit hash to version when available (e.g. 2.35+abc1234)."""
|
||||
|
|
|
|||
|
|
@ -4349,7 +4349,7 @@ function _getLatestWhatsNewVersion() {
|
|||
const versions = Object.keys(WHATS_NEW)
|
||||
.filter(v => _compareVersions(v, buildVer) <= 0)
|
||||
.sort((a, b) => _compareVersions(b, a));
|
||||
return versions[0] || '2.5.2';
|
||||
return versions[0] || '2.5.3';
|
||||
}
|
||||
|
||||
function openWhatsNew() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue