aboutsummaryrefslogtreecommitdiffstats
path: root/changelog.js
diff options
context:
space:
mode:
authorIgor Minar2013-08-12 17:18:43 -0700
committerIgor Minar2013-08-13 10:00:14 -0700
commite3e57fb9cddc4f74ed0d24e436a63e94a4f7f591 (patch)
treea88a09230759213ce8d0d0f9dcd30843b34f5f9d /changelog.js
parent1429a71474a3b70a16cba0b82bf23c4f73b63efc (diff)
downloadangular.js-e3e57fb9cddc4f74ed0d24e436a63e94a4f7f591.tar.bz2
chore(changelog.js): pickup breaking changes f/ chore/refactor commits
Diffstat (limited to 'changelog.js')
-rwxr-xr-xchangelog.js2
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);