Remove $ from version number

This commit is contained in:
Henry Mercer 2023-01-26 15:22:33 +00:00
parent f6d03f448d
commit d966969093
2 changed files with 2 additions and 2 deletions

View file

@ -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)