aboutsummaryrefslogtreecommitdiffstats
path: root/changelog.js
diff options
context:
space:
mode:
authorMatias Niemelä2013-12-06 12:54:20 -0500
committerMatias Niemelä2013-12-09 11:52:28 -0500
commita14266e46466d02871bc3edc2a9229dcfa5acc89 (patch)
tree4facd17816104d22ef097804dda8fced18975af8 /changelog.js
parentb4d44e12987131bfd23399947fe9b2f860cc5729 (diff)
downloadangular.js-a14266e46466d02871bc3edc2a9229dcfa5acc89.tar.bz2
chore(CHANGELOG): introduce perf() section for performance-related commits
Instead of using fix() or chore() when labelling a commit which improves speed or performance use perf(). Perf commits will be listed in the CHANGELOG under "Performance Improvements". For example: perf($animate): cache all getComputedStyle operations to reduce additional reflows
Diffstat (limited to 'changelog.js')
-rwxr-xr-xchangelog.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/changelog.js b/changelog.js
index b9a623f3..fd30a185 100755
--- a/changelog.js
+++ b/changelog.js
@@ -142,6 +142,7 @@ var writeChangelog = function(stream, commits, version) {
var sections = {
fix: {},
feat: {},
+ perf: {},
breaks: {}
};
@@ -169,6 +170,7 @@ var writeChangelog = function(stream, commits, version) {
stream.write(util.format(HEADER_TPL, version, version, currentDate()));
printSection(stream, 'Bug Fixes', sections.fix);
printSection(stream, 'Features', sections.feat);
+ printSection(stream, 'Performance Improvements', sections.perf);
printSection(stream, 'Breaking Changes', sections.breaks, false);
}
@@ -186,7 +188,7 @@ var getPreviousTag = function() {
var generate = function(version, file) {
getPreviousTag().then(function(tag) {
console.log('Reading git log since', tag);
- readGitLog('^fix|^feat|BREAKING', tag).then(function(commits) {
+ readGitLog('^fix|^feat|^perf|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);