We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f43a8 commit 06c43d2Copy full SHA for 06c43d2
versionist.conf.js
@@ -53,6 +53,11 @@ module.exports = {
53
fromLine: 6
54
},
55
56
+ getChangelogDocumentedVersions: {
57
+ preset: 'changelog-headers',
58
+ clean: /^v/
59
+ },
60
+
61
includeCommitWhen: (commit) => { return true; },
62
getIncrementLevelFromCommit: (commit) => {
63
return 'patch'
@@ -81,17 +86,5 @@ module.exports = {
81
86
});
82
87
83
88
return data;
84
- },
85
-
- template: [
- '## v{{version}} - {{moment date "Y-MM-DD"}}',
- '',
89
- '{{#each commits}}',
90
- '{{#if this.author}}',
91
- '* {{capitalize this.subject}} [{{this.author}}]',
92
- '{{else}}',
93
- '* {{capitalize this.subject}}',
94
- '{{/if}}',
95
- '{{/each}}'
96
- ].join('\n')
+ }
97
}
0 commit comments