9 Commits

4 changed files with 48 additions and 6 deletions

View File

@@ -2,16 +2,57 @@
"categories": [
{
"title": "## 🚀 Features",
"labels": ["add","Add"]
"labels": [
"add",
"Add",
"Kind/Feature"
]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix","Fix"]
"labels": [
"fix",
"Fix",
"Kind/Bug"
]
},
{
"title": "## 🧪 Upgrade",
"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": [
{

View File

@@ -24,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

View File

@@ -6,8 +6,6 @@ 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__":
main()

View File

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