Skip to content

Commit 1f7b8e7

Browse files
committed
formatter
1 parent 701a19a commit 1f7b8e7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/changelog/new-release.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@
1515

1616
PROJECT_ROOT_DIR = Path(__file__).resolve().parent.parent.parent
1717
VERSION_PATTERN = r"^\d+\.\d+\.\d+$"
18-
CHANGE_TYPES_ORDER = {"breaking": 0, "feature": 1, "enhancement": 2, "bugfix": 3, "dependency": 4}
18+
CHANGE_TYPES_ORDER = {
19+
"breaking": 0,
20+
"feature": 1,
21+
"enhancement": 2,
22+
"bugfix": 3,
23+
"dependency": 4,
24+
}
1925
CHANGE_TYPES = tuple(CHANGE_TYPES_ORDER.keys())
2026

2127

0 commit comments

Comments
 (0)