Skip to content

Commit 10be860

Browse files
authored
chore(changelog.js): small fix in changelog generator (INRIA#3311)
1 parent 9a8bcb8 commit 10be860

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/_release/changelog_generator/changelog.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ function main() {
3333
*/
3434
function parseCommitLog(version, callback) {
3535
var categorizedCommits = {
36-
"feat": {
36+
"feat": { // will also match "feature:"
3737
title:"New features",
3838
commits: []
3939
},
4040
"fix": {
41-
title:"Bug Fixes",
41+
title:"Bug fixes",
4242
commits: []
4343
},
4444
"doc": {
@@ -49,7 +49,7 @@ function parseCommitLog(version, callback) {
4949
title:"Code style",
5050
commits: []
5151
},
52-
"refactor": {
52+
"ref": { // will also match "refactor:"
5353
title:"Refactoring",
5454
commits: []
5555
},

0 commit comments

Comments
 (0)