Release: bump version to 2.7.1 + default the docker publish tag to 2.7.1
- _SOULSYNC_BASE_VERSION 2.7.0 → 2.7.1 (single source of truth; drives the UI version + commit-suffixed build string). - docker-publish.yml workflow_dispatch default version_tag 2.7.0 → 2.7.1 (and the description example), so the manual tagged-release publish defaults to 2.7.1.
This commit is contained in:
parent
826ac0b366
commit
572a7c05f0
2 changed files with 3 additions and 3 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.7.0)'
|
||||
description: 'Version tag (e.g. 2.7.1)'
|
||||
required: true
|
||||
default: '2.7.0'
|
||||
default: '2.7.1'
|
||||
|
||||
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.7.0"
|
||||
_SOULSYNC_BASE_VERSION = "2.7.1"
|
||||
|
||||
def _build_version_string():
|
||||
"""Append short commit hash to version when available (e.g. 2.35+abc1234)."""
|
||||
|
|
|
|||
Loading…
Reference in a new issue