chore: update changelog format and remove version prefix for consistency

This commit is contained in:
Jiaxin Peng
2026-03-04 10:37:02 +00:00
parent b08c46c233
commit 95b22619b4
2 changed files with 1 additions and 16 deletions

View File

@@ -25,7 +25,7 @@ function bumpChangelog(version) {
}
const today = new Date().toISOString().slice(0, 10);
const releaseHeader = `## v${version} (${today})`;
const releaseHeader = `## ${version} (${today})`;
const updated = content.replace(unreleasedHeader, releaseHeader);
const marker = "# Changelog\n\n";