bin: update make_changelog.py to support semver

s3-about
Gary Kim 2019-06-13 20:52:35 +08:00 committed by Nick Craig-Wood
parent 12c2a750f5
commit 44f6491731
1 changed files with 2 additions and 2 deletions

View File

@ -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) + ")")