Skip to content

Commit

Permalink
Remove $ from version number
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Jan 26, 2023
1 parent f6d03f4 commit d966969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/update-release-branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def update_changelog(version):
else:
content = EMPTY_CHANGELOG

newContent = content.replace('[UNRELEASED]', f'${version} - {get_today_string()}', 1)
newContent = content.replace('[UNRELEASED]', f'{version} - {get_today_string()}', 1)

with open('CHANGELOG.md', 'w') as f:
f.write(newContent)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CodeQL Action Changelog

## $2.2.0 - 26 Jan 2023
## 2.2.0 - 26 Jan 2023

- Improve stability when choosing the default version of CodeQL to use in code scanning workflow runs on Actions on github.com. [#1475](https://github.com/github/codeql-action/pull/1475)
- This change addresses customer reports of code scanning alerts on github.com being closed and reopened during the rollout of new versions of CodeQL in the GitHub Actions [runner images](https://github.com/actions/runner-images).
Expand Down

0 comments on commit d966969

Please sign in to comment.