8 Commits
v1.0.3 ... dev

3 changed files with 13 additions and 4 deletions

View File

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

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