diff options
| author | Igor Minar | 2013-08-12 17:18:43 -0700 |
|---|---|---|
| committer | Igor Minar | 2013-08-22 10:07:41 -0700 |
| commit | db87fd52cafa28c13ae0642b91f9a30f0301f257 (patch) | |
| tree | 7afb07792bad97fff8ef0c29a84f87a2fd72ac5f /changelog.js | |
| parent | 792509e987bf3a91914a4e87e624e1fb1f436767 (diff) | |
| download | angular.js-db87fd52cafa28c13ae0642b91f9a30f0301f257.tar.bz2 | |
chore(changelog.js): pickup breaking changes f/ chore/refactor commits
Diffstat (limited to 'changelog.js')
| -rwxr-xr-x | changelog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/changelog.js b/changelog.js index c331c7cf..90ec01c4 100755 --- a/changelog.js +++ b/changelog.js @@ -192,7 +192,7 @@ var getPreviousTag = function() { var generate = function(version, file) { getPreviousTag().then(function(tag) { console.log('Reading git log since', tag); - readGitLog('^fix|^feat|Breaks', tag).then(function(commits) { + readGitLog('^fix|^feat|BREAKING', tag).then(function(commits) { console.log('Parsed', commits.length, 'commits'); console.log('Generating changelog to', file || 'stdout', '(', version, ')'); writeChangelog(file ? fs.createWriteStream(file) : process.stdout, commits, version); |
