Skip to content

Commit 0fd60fd

Browse files
committed
Update generate_release_notes.py
1 parent 4124fba commit 0fd60fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/generate_release_notes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ def filter_commits_by_date(commits):
9191

9292
def categorize_commits(commits):
9393
categories = {
94-
"New Architecture-specific changes": [],
9594
"Reliability": [],
9695
"New Features": [],
9796
"Breaking Changes": [],
97+
"New Architecture-specific changes": [],
9898
"Other": []
9999
}
100100

@@ -103,7 +103,7 @@ def categorize_commits(commits):
103103
"Reliability": ["fix", "bug", "error", "issue", "crash", "fault", "defect", "patch"],
104104
"New Features": ["feature", "add", "implement", "introduce", "support", "enable"],
105105
"Breaking Changes": ["break", "remove", "deprecated", "incompatible", "remove support", "change api"],
106-
"New Architecture-specific changes": ["[fabric]","fabric", "arch", "architecture", "refactor", "restructure", "modularize"]
106+
"New Architecture-specific changes": ["fabric", "arch", "architecture", "refactor", "restructure", "modularize"]
107107
}
108108

109109
for commit in commits:

0 commit comments

Comments
 (0)