Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bababb956e | ||
| 0e991a7f23 | |||
|
d2bcb57d53
|
|||
|
7bacf6deb6
|
|||
|
|
cadf44ab5b | ||
| e0491fb965 | |||
|
9c5e4d0510
|
|||
|
|
4a81ec56e6 | ||
| a316d6630b | |||
|
bf687305ef
|
|||
|
|
0bcf0200ab | ||
| 6dff0e0cfc | |||
|
474d92e180
|
|||
|
|
d00135b00c | ||
| 3dfaf8d74d | |||
|
73d406e18d
|
@@ -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",
|
||||||
|
|||||||
1
hello.py
1
hello.py
@@ -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()
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "workflowbumptester"
|
name = "workflowbumptester"
|
||||||
version = "1.0.5"
|
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.5"
|
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}"
|
||||||
|
|||||||
Reference in New Issue
Block a user