10 Commits

Author SHA1 Message Date
Gitea CI
ec5a4f175a Bump version: 1.0.2 → 1.0.3 2025-05-29 09:57:27 +00:00
a94cde06ac Merge pull request 'remove release note string' (#8) from dev into main
Reviewed-on: #8
2025-05-29 10:56:57 +01:00
a0154f345c remove release note string 2025-05-29 11:56:30 +02:00
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
Gitea CI
3a47378dc1 Bump version: 1.0.0 → 1.0.1 2025-05-29 09:47:10 +00:00
09c240089f just some bs to hopefully show up in changelog 2025-05-29 11:46:43 +02:00
Gitea CI
9c130ac1d0 Bump version: 0.1.29 → 1.0.0 2025-05-29 09:44:21 +00:00
3 changed files with 4 additions and 7 deletions

View File

@@ -1,10 +1,6 @@
on:
workflow_dispatch:
inputs:
release_notes:
description: Release notes (use \n for newlines)
type: string
required: false
github_release:
description: 'Create Gitea Release'
default: true
@@ -65,7 +61,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

@@ -6,6 +6,7 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Version file not found. Returning default version '0.0.0'.")
if __name__ == "__main__":

View File

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