Skip to content

Commit

Permalink
fixed missing toml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlib committed Dec 22, 2024
1 parent d398054 commit dd454a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def search_and_update_versions(directory, old_version, new_version):
changed_files = []
for root, _, files in os.walk(directory):
for file in files:
if file.endswith('.py') or file.endswith('.yaml'):
if file.endswith('.py') or file.endswith('.yaml') or file.endswith('.toml'):
file_path = Path(root) / file
if update_version_in_file(file_path, old_version, new_version):
changed_files.append(file_path)
Expand Down

0 comments on commit dd454a8

Please sign in to comment.