From ee55fbfc66740ce8931ffd5f457d1efddf0d4467 Mon Sep 17 00:00:00 2001 From: Achal Shah Date: Thu, 14 Apr 2022 16:00:19 -0700 Subject: [PATCH] fix: Bump the number of versions bumps expected to 27 Signed-off-by: Achal Shah --- infra/scripts/release/bump_file_versions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infra/scripts/release/bump_file_versions.py b/infra/scripts/release/bump_file_versions.py index f846363d775..b706c2c141b 100644 --- a/infra/scripts/release/bump_file_versions.py +++ b/infra/scripts/release/bump_file_versions.py @@ -4,7 +4,7 @@ import sys USAGE = f"Usage: python {sys.argv[0]} [--help] | current_semver_version new_semver_version]" -VERSIONS_TO_BUMP = 26 +VERSIONS_TO_BUMP = 27 def main() -> None: @@ -57,6 +57,8 @@ def main() -> None: current_version = current_version_patch found = True break + else: + print(f"Found {versions_in_files} occurrences of {current_version_patch}, instead of {VERSIONS_TO_BUMP}") if not found: raise SystemExit(f"Could not find {VERSIONS_TO_BUMP} versions of {current_version} in {path_to_file_list}")