9 Commits

Author SHA1 Message Date
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
3 changed files with 5 additions and 39 deletions

View File

@@ -4,55 +4,20 @@
"title": "## 🚀 Features", "title": "## 🚀 Features",
"labels": [ "labels": [
"add", "add",
"Add", "Add"
"Kind/Feature"
] ]
}, },
{ {
"title": "## 🐛 Fixes", "title": "## 🐛 Fixes",
"labels": [ "labels": [
"fix", "fix",
"Fix", "Fix"
"Kind/Bug"
] ]
}, },
{ {
"title": "## 🧪 Upgrade", "title": "## 🧪 Upgrade",
"labels": ["upgrade","Upgrade","Clean"] "labels": ["upgrade","Upgrade","Clean"]
} }
,
{
"title": "## 📝 Documentation",
"labels": [
"docs",
"Docs",
"Kind/Documentation"
]
},
{
"title": "## 🧹 Chore",
"labels": [
"chore",
"Chore",
"Kind/Chore"
]
},
{
"title": "## 🛠️ Maintenance",
"labels": [
"maintenance",
"Maintenance",
"Kind/Maintenance"
]
},
{
"title": "## 🗑️ Deprecation",
"labels": [
"deprecation",
"Deprecation",
"Kind/Deprecation"
]
}
], ],
"label_extractor": [ "label_extractor": [
{ {

View File

@@ -6,6 +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("Done")
if __name__ == "__main__": if __name__ == "__main__":
main() main()

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "workflowbumptester" name = "workflowbumptester"
version = "1.0.6" version = "1.0.9"
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.6" current_version = "1.0.9"
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}"