From 2ebf30bec10e98be7676155362392d2a65ad95b8 Mon Sep 17 00:00:00 2001 From: bronsen Date: Sat, 21 Feb 2026 13:28:05 +0100 Subject: [PATCH 1/2] just: refine release script I want to make it a fish script though... --- justfile | 38 +++++++++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 5 deletions(-) diff --git a/justfile b/justfile index a3b86d1..e85e3e0 100644 --- a/justfile +++ b/justfile @@ -67,14 +67,42 @@ bump segment: [private] release segment: - #!/usr/bin/bash - export tag=$(uv version --short --output-format text --frozen --bump {{ segment }}) + #!/usr/bin/env bash + export body=$(cat changelog.md) + export tag=$(uv version --short --output-format text --bump {{ segment }}) + git add pyproject.toml uv.lock git commit -m "Release version $tag" - git push git tag v$tag + + git push git push origin tag v$tag + uv build --wheel --clear - export body=$(cat changelog.md) - fj release create "v$tag" --tag "v$tag" --attach dist/*.whl --body "$body" + + fj release create "v$tag: $release_name" --tag "v$tag" --attach dist/*.whl --body "$body" uv run twine upload --config-file ~/.config/pypirc --repository code.cbo dist/*.whl + + + + + + + + + + + + + + + + + + + + + + + +# From 5f26fbc18f647901e28db0c12698a8992335b41b Mon Sep 17 00:00:00 2001 From: bronsen Date: Sat, 21 Feb 2026 13:32:01 +0100 Subject: [PATCH 2/2] Release version 0.4.5 --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ba5a047..a29df06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "teilchensammler-cli" -version = "0.4.4" +version = "0.4.5" description = "Build up and maintain an inventory of electronics parts and tools." readme = "README.md" requires-python = ">=3.14,<4.0" diff --git a/uv.lock b/uv.lock index e5309b6..8476c8d 100644 --- a/uv.lock +++ b/uv.lock @@ -1153,7 +1153,7 @@ wheels = [ [[package]] name = "teilchensammler-cli" -version = "0.4.4" +version = "0.4.5" source = { editable = "." } dependencies = [ { name = "ciso8601" },