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:
BoulderBadgeDad 2026-06-11 15:45:39 -07:00
parent 826ac0b366
commit 572a7c05f0
2 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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)."""