FIX: Don't include reverts in release notes

This commit is contained in:
Robin Ward 2014-11-06 15:58:03 -05:00
parent 8959ed9031
commit 1333378f39

View File

@ -6,7 +6,9 @@ task "release_note:generate", :tag do |t, args|
new_features = Set.new
ux_changes = Set.new
`git log #{tag}..HEAD`.each_line do |comment|
next if comment =~ /^\s*Revert/
split_comments(comment).each do |line|
if line =~ /^FIX:/
bug_fixes << better(line)