bin: update make_changelog.py to support semver
This commit is contained in:
parent
12c2a750f5
commit
44f6491731
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ from collections import defaultdict
|
|||
|
||||
IGNORE_RES = [
|
||||
r"^Add .* to contributors$",
|
||||
r"^Start v\d+.\d+-DEV development$",
|
||||
r"^Version v\d.\d+$",
|
||||
r"^Start v\d+\.\d+(\.\d+)?-DEV development$",
|
||||
r"^Version v\d+\.\d+(\.\d+)?$",
|
||||
]
|
||||
|
||||
IGNORE_RE = re.compile("(?:" + "|".join(IGNORE_RES) + ")")
|
||||
|
|
Loading…
Reference in a new issue