feat: Allow OTA update to beta releases

This commit is contained in:
Joel Goguen
2026-05-07 23:29:15 -04:00
parent 0b93445450
commit 3a612df4b5
14 changed files with 398 additions and 103 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ def categorize_commit(subject: str) -> tuple[str, str]:
return "other", subject
commit_type = match.group("type").lower()
description = match.group("description")
description = f'{commit_type}: {match.group("description")}'
if match.group("breaking"):
description = f"BREAKING: {description}"