4 Commits

Author SHA1 Message Date
Gitea CI
794b1ff5e1 Bump version: 1.0.1 → 1.0.2 2025-05-29 09:51:24 +00:00
fc70ae2bdc Merge pull request 'test wf in normal mode' (#6) from dev into main
Reviewed-on: #6
2025-05-29 10:50:52 +01:00
6598e30a42 update hello.py 2025-05-29 11:50:31 +02:00
b07928c8af remove commit mode 2025-05-29 11:50:23 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ jobs:
id: build_changelog
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
with:
mode: "COMMIT"
platform: "gitea"
baseURL: "http://gitea:3000"
configuration: ".gitea/changelog-config.json"

View File

@@ -8,6 +8,7 @@ def get_version():
return f.read().strip()
print("Version file not found. Returning default version '0.0.0'.")
if __name__ == "__main__":
main()
print("This script has been executed successfully.")

View File

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