Merge pull request #2925 from mcwumbly/release-notes

Includes lines in release notes from comments with a blank like after the first one
This commit is contained in:
Régis Hanol 2014-10-28 15:21:30 +01:00
commit 2143348dea

View file

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