Skip to content

Commit

Permalink
Fix version header in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bglw committed Aug 5, 2022
1 parent 84d5941 commit 14c4f7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .backstage/changelog.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ while (!(entry = it.next()).done) {
let [num, line] = entry.value;
// Read until we reach our unreleased changelog section.
if (/^\s*## Unreleased\s*$/.test(line)) {
let header = `## ${version} (${date()})`;
let header = `## v${version} (${date()})`;
lines[num] = `## Unreleased\n\n${header}`;
release.push(header);
break;
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

* Oops — fixes the npx wrapper on Windows

## 0.6.0 (August 5, 2022)
## v0.6.0 (August 5, 2022)

### Features & Improvements

Expand Down

0 comments on commit 14c4f7e

Please sign in to comment.