32 Commits

Author SHA1 Message Date
Gitea CI
bababb956e Bump version: 1.0.9 → 1.0.10 2025-05-29 10:42:52 +00:00
0e991a7f23 Merge pull request 'change changelog template to use the Kind/Feature Label in the Features section' (#22) from dev into main
Reviewed-on: #22
2025-05-29 11:42:30 +01:00
d2bcb57d53 fix typo 2025-05-29 12:41:42 +02:00
7bacf6deb6 tell changelog to use feature label 2025-05-29 12:41:06 +02:00
Gitea CI
cadf44ab5b Bump version: 1.0.8 → 1.0.9 2025-05-29 10:33:01 +00:00
e0491fb965 Merge pull request 'Upgrade: Add new print statement to main' (#20) from dev into main
Reviewed-on: #20
2025-05-29 11:32:03 +01:00
9c5e4d0510 test 2025-05-29 12:31:06 +02:00
Gitea CI
4a81ec56e6 Bump version: 1.0.7 → 1.0.8 2025-05-29 10:29:21 +00:00
a316d6630b Merge pull request 're-enable changelog' (#19) from dev into main
Reviewed-on: #19
2025-05-29 11:29:00 +01:00
bf687305ef re-enable changelog 2025-05-29 12:26:25 +02:00
Gitea CI
0bcf0200ab Bump version: 1.0.6 → 1.0.7 2025-05-29 10:24:13 +00:00
6dff0e0cfc Merge pull request 'test: do not use changelog template' (#14) from dev into main
Reviewed-on: #14
2025-05-29 11:23:53 +01:00
474d92e180 test: do not use changelog template 2025-05-29 12:23:32 +02:00
Gitea CI
d00135b00c Bump version: 1.0.5 → 1.0.6 2025-05-29 10:20:22 +00:00
3dfaf8d74d Merge pull request 'refactor: enhance changelog categories with additional labels' (#13) from dev into main
Reviewed-on: #13
2025-05-29 11:20:00 +01:00
73d406e18d refactor: enhance changelog categories with additional labels 2025-05-29 12:18:57 +02:00
Gitea CI
b4b4aadb65 Bump version: 1.0.4 → 1.0.5 2025-05-29 10:17:49 +00:00
b6af2370bb Merge pull request 'remove unnecessary print statement for missing version file' (#11) from dev into main
Reviewed-on: #11
2025-05-29 11:17:29 +01:00
6fdfdbee31 remove unnecessary print statement for missing version file 2025-05-29 12:17:02 +02:00
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
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
4 changed files with 16 additions and 10 deletions

View File

@@ -2,11 +2,18 @@
"categories": [
{
"title": "## 🚀 Features",
"labels": ["add","Add"]
"labels": [
"add",
"Add",
"Kind/Feature"
]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix","Fix"]
"labels": [
"fix",
"Fix"
]
},
{
"title": "## 🧪 Upgrade",

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
@@ -28,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
@@ -65,7 +64,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,7 +6,7 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Done")
if __name__ == "__main__":
main()

View File

@@ -1,6 +1,6 @@
[project]
name = "workflowbumptester"
version = "0.1.29"
version = "1.0.10"
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.10"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"