13 Commits
v1.0.6 ... main

3 changed files with 4 additions and 37 deletions

View File

@@ -12,47 +12,13 @@
"title": "## 🐛 Fixes",
"labels": [
"fix",
"Fix",
"Kind/Bug"
"Fix"
]
},
{
"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

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