6 Commits
v1.0.5 ... 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
bf687305ef re-enable changelog 2025-05-29 12:26:25 +02:00
474d92e180 test: do not use changelog template 2025-05-29 12:23:32 +02:00
73d406e18d refactor: enhance changelog categories with additional labels 2025-05-29 12:18:57 +02:00
2 changed files with 10 additions and 2 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

@@ -6,6 +6,7 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Done")
if __name__ == "__main__":
main()