From dd454a84243446e01ac03f6d3fdad71782d24918 Mon Sep 17 00:00:00 2001 From: Alex Liberzon Date: Sun, 22 Dec 2024 23:08:49 +0200 Subject: [PATCH] fixed missing toml --- bump_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bump_version.py b/bump_version.py index 33e67f9..216fc11 100644 --- a/bump_version.py +++ b/bump_version.py @@ -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)