19 Commits
v1.0.4 ... main

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
3 changed files with 12 additions and 6 deletions

View File

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

View File

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

View File

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