Skip to content

Commit 65d282c

Browse files
committed
fix(upgrade): remove "What's new" header from changelog output
Remove the "### What's new" heading from the post-upgrade changelog while keeping an empty line at the top for visual separation from the upgrade status line.
1 parent 8e8973d commit 65d282c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/formatters/human.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2164,7 +2164,7 @@ function formatChangelog(data: UpgradeResult): string {
21642164
}
21652165

21662166
const { changelog } = data;
2167-
const lines: string[] = ["", "### What's new", ""];
2167+
const lines: string[] = [""];
21682168

21692169
for (const section of changelog.sections) {
21702170
lines.push(CATEGORY_HEADINGS[section.category]);

0 commit comments

Comments
 (0)