BTHLABS-0000: Fix bumping of the workspace

This commit is contained in:
Tomek Wójcik 2025-09-18 20:33:08 +02:00
parent 77526b1fae
commit a6f01ba71e
4 changed files with 6 additions and 2 deletions

View File

@ -4,4 +4,5 @@ run:
files_to_version:
- "deployment/aio/docker-compose.yaml"
- "deployment/fullstack/docker-compose.yaml"
- "pyproject.toml"
- "README.md"

3
poetry.lock generated
View File

@ -9,6 +9,9 @@ python-versions = "^3.12"
files = []
develop = true
[package.dependencies]
invoke = "2.2.0"
[package.source]
type = "directory"
url = "services/packages/workspace_tools"

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "hotpocket-workspace"
version = "1.0.0"
version = "25.9.12"
description = "HotPocket Workspace"
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
license = "Apache-2.0"

View File

@ -290,5 +290,5 @@ def bump_version(ctx: Context,
f'inv bump-version {next_version} --build {build}',
)
if service is None:
if 'backend' in services_to_bump:
tools_bump_version_task(ctx, next_version, build=build)