3 Commits

Author SHA1 Message Date
Gitea CI
5c11d34c84 Bump version: 1.0.3 → 1.0.4 2025-05-29 10:15:50 +00:00
06e714b23b Merge pull request 'experiment: include fetch depth, tags' (#10) from dev into main
Reviewed-on: #10
2025-05-29 11:14:59 +01:00
dd97c0d68a experiment: include fetch depth, tags 2025-05-29 12:13:37 +02:00
2 changed files with 5 additions and 2 deletions

View File

@@ -24,6 +24,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history
fetch-tags: true # Fetch all tags (refs/tags)
- name: Install uv
uses: astral-sh/setup-uv@v5

View File

@@ -1,6 +1,6 @@
[project]
name = "workflowbumptester"
version = "1.0.3"
version = "1.0.4"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
@@ -10,7 +10,7 @@ dependencies = [
]
[tool.bumpversion]
current_version = "1.0.3"
current_version = "1.0.4"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"