diff options
| author | Igor Minar | 2013-08-12 17:18:43 -0700 | 
|---|---|---|
| committer | Igor Minar | 2013-08-13 10:00:14 -0700 | 
| commit | e3e57fb9cddc4f74ed0d24e436a63e94a4f7f591 (patch) | |
| tree | a88a09230759213ce8d0d0f9dcd30843b34f5f9d | |
| parent | 1429a71474a3b70a16cba0b82bf23c4f73b63efc (diff) | |
| download | angular.js-e3e57fb9cddc4f74ed0d24e436a63e94a4f7f591.tar.bz2 | |
chore(changelog.js): pickup breaking changes f/ chore/refactor commits
| -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); | 
