bin: update make_changelog.py to support semver

This commit is contained in:
Gary Kim 2019-06-13 20:52:35 +08:00 committed by Nick Craig-Wood
parent 12c2a750f5
commit 44f6491731

View file

@ -12,8 +12,8 @@ from collections import defaultdict
IGNORE_RES = [ IGNORE_RES = [
r"^Add .* to contributors$", r"^Add .* to contributors$",
r"^Start v\d+.\d+-DEV development$", r"^Start v\d+\.\d+(\.\d+)?-DEV development$",
r"^Version v\d.\d+$", r"^Version v\d+\.\d+(\.\d+)?$",
] ]
IGNORE_RE = re.compile("(?:" + "|".join(IGNORE_RES) + ")") IGNORE_RE = re.compile("(?:" + "|".join(IGNORE_RES) + ")")