3 Commits
v1.0.8 ... dev

Author SHA1 Message Date
d2bcb57d53 fix typo 2025-05-29 12:41:42 +02:00
7bacf6deb6 tell changelog to use feature label 2025-05-29 12:41:06 +02:00
9c5e4d0510 test 2025-05-29 12:31:06 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -4,7 +4,8 @@
"title": "## 🚀 Features", "title": "## 🚀 Features",
"labels": [ "labels": [
"add", "add",
"Add" "Add",
"Kind/Feature"
] ]
}, },
{ {

View File

@@ -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()