Skip to content

Commit

Permalink
Merge pull request #18 from open-sausages/pulls/fix-bug-case
Browse files Browse the repository at this point in the history
BUG Make check for "BUG" tags case-insensitive
  • Loading branch information
dhensby authored Aug 18, 2016
2 parents 82e3430 + 4dcd47a commit 08f38ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/ChangelogItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class ChangelogItem
'/^(ENHANCEMENT|ENHNACEMENT|FEATURE|NEW)\s?:?/i'
),
'Bugfixes' => array(
'/^(BUGFIX|BUGFUX|BUG|FIX|FIXED|FIXING)\s?:?/',
'/^(BUG FIX)\s?:?/'
'/^(BUGFIX|BUGFUX|BUG|FIX|FIXED|FIXING)\s?:?/i',
'/^(BUG FIX)\s?:?/i'
)
);

Expand Down

0 comments on commit 08f38ea

Please sign in to comment.