We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da1ddab commit ecc9938Copy full SHA for ecc9938
infra/scripts/release/bump_file_versions.py
@@ -4,7 +4,7 @@
4
import sys
5
6
USAGE = f"Usage: python {sys.argv[0]} [--help] | current_semver_version new_semver_version]"
7
-VERSIONS_TO_BUMP = 26
+VERSIONS_TO_BUMP = 27
8
9
10
def main() -> None:
@@ -57,6 +57,8 @@ def main() -> None:
57
current_version = current_version_patch
58
found = True
59
break
60
+ else:
61
+ print(f"Found {versions_in_files} occurrences of {current_version_patch}, instead of {VERSIONS_TO_BUMP}")
62
if not found:
63
raise SystemExit(f"Could not find {VERSIONS_TO_BUMP} versions of {current_version} in {path_to_file_list}")
64
0 commit comments