Skip to content

Commit de49b89

Browse files
committed
fix: fix changelog groups
1 parent 9d98a16 commit de49b89

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lib/git/changelog.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,11 +244,9 @@ export default class GitChangelog {
244244
}
245245

246246
// secondary changes
247-
const secondaryChanges = this.#changes.getChanges( change => !change.isBreakingChange && !primaryTypes.has( change.type ) );
248-
249247
this.#changesGroups.push( {
250248
"name": "Other changes",
251-
"changes": secondaryChanges,
249+
"changes": this.#changes.getChanges( change => !change.isBreakingChange && !primaryTypes.has( change.type ) && !change.isReleaseChange ),
252250
"report": true,
253251
"primaryChange": false,
254252
"showAnnotatiion": true,

0 commit comments

Comments
 (0)