Skip to content

Commit

Permalink
Fix set_version script
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Sep 10, 2024
1 parent 89ab444 commit 393f523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/set_version.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ const today = `${now.getFullYear()}-${(now.getMonth() + 1)
.padStart(2, "0")}-${now.getDate().toString().padStart(2, "0")}`;
changelog = changelog.replace(
/^## Unreleased$/m,
`## ${version} (${today})`
`## v${version} (${today})`
);
fs.writeFileSync(changelogPath, changelog);

0 comments on commit 393f523

Please sign in to comment.