Skip to content

Commit ecc9938

Browse files
authored
fix: Bump the number of versions bumps expected to 27 (#2549)
Signed-off-by: Achal Shah <[email protected]>
1 parent da1ddab commit ecc9938

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

infra/scripts/release/bump_file_versions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55

66
USAGE = f"Usage: python {sys.argv[0]} [--help] | current_semver_version new_semver_version]"
7-
VERSIONS_TO_BUMP = 26
7+
VERSIONS_TO_BUMP = 27
88

99

1010
def main() -> None:
@@ -57,6 +57,8 @@ def main() -> None:
5757
current_version = current_version_patch
5858
found = True
5959
break
60+
else:
61+
print(f"Found {versions_in_files} occurrences of {current_version_patch}, instead of {VERSIONS_TO_BUMP}")
6062
if not found:
6163
raise SystemExit(f"Could not find {VERSIONS_TO_BUMP} versions of {current_version} in {path_to_file_list}")
6264

0 commit comments

Comments
 (0)