From b160dccfd288fee39ba04bd21a9be59bec957242 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 7 Feb 2024 14:45:33 +0000 Subject: [PATCH] build: reorder changelog sections Signed-off-by: Michael Kriese --- tools/changelog.mjs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tools/changelog.mjs b/tools/changelog.mjs index fe3a0bd..1336934 100644 --- a/tools/changelog.mjs +++ b/tools/changelog.mjs @@ -8,10 +8,6 @@ const config = conventionalChangelogPreset({ type: 'feat', section: 'Features', }, - { - type: 'feature', - section: 'Features', - }, { type: 'fix', section: 'Bug Fixes', @@ -32,10 +28,6 @@ const config = conventionalChangelogPreset({ type: 'style', section: 'Styles', }, - { - type: 'chore', - section: 'Miscellaneous Chores', - }, { type: 'refactor', section: 'Code Refactoring', @@ -52,6 +44,10 @@ const config = conventionalChangelogPreset({ type: 'ci', section: 'Continuous Integration', }, + { + type: 'chore', + section: 'Miscellaneous Chores', + }, ], });