Skip to content

Commit

Permalink
changed releasedate to release_date for conf/config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
soham30rane committed Dec 26, 2024
1 parent b217220 commit 2a73bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def update_config(ver: str, release_date: str, config_file_path: str):
with open(config_file_path, 'r') as file:
content = file.read()

content = re.sub(r'releasedate:\s*".*?"', f'releasedate: "{release_date}"', content)
content = re.sub(r'release_date:\s*".*?"', f'release_date: "{release_date}"', content)
content = re.sub(r'version:\s*".*?"', f'version: "{ver}"', content)
content = re.sub(r'version_src:\s*".*?"',f'version_src: "{ver}"',content)

Expand Down

0 comments on commit 2a73bb1

Please sign in to comment.