[tor/master] Update changelog sorting rules to know about dirauth changes

commit 1453bda67b03f1405a3ecc80be9f0378ef813a2f Author: Nick Mathewson <nickm@torproject.org> Date: Tue Feb 28 10:12:17 2017 -0500 Update changelog sorting rules to know about dirauth changes --- scripts/maint/format_changelog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py index e909fc5..2429c24 100755 --- a/scripts/maint/format_changelog.py +++ b/scripts/maint/format_changelog.py @@ -205,6 +205,8 @@ def head_score(s): score = -300 elif lw.startswith("deprecated version"): score = -200 + elif lw.startswith("directory auth"): + score = -150 elif (('new' in lw and 'requirement' in lw) or ('new' in lw and 'dependenc' in lw) or ('build' in lw and 'requirement' in lw) or
participants (1)
-
nickm@torproject.org