8 Commits
dev ... v1.0.5

3 changed files with 4 additions and 12 deletions

View File

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

View File

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