From 9d119e2f8e5b193ed49e6d7faae8e67c0af309e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Apr 2026 16:36:50 +0100 Subject: [PATCH] CU-869crefj9: Fix version starting with 'v' when bumped --- .github/scripts/bump_dependants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/bump_dependants.py b/.github/scripts/bump_dependants.py index 2d5e237d6..f3aec0d93 100644 --- a/.github/scripts/bump_dependants.py +++ b/.github/scripts/bump_dependants.py @@ -106,7 +106,7 @@ def open_pr(branch: str, title: str, body: str, base: str = "main"): def main(): args = parse_args() package = args.package - new_version = args.version + new_version = args.version.removeprefix("v") repo_root = Path(__file__).resolve().parents[2] run(["git", "config", "user.name", "github-actions[bot]"]) @@ -158,4 +158,4 @@ def main(): if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file + sys.exit(main())