From 5cceba21f415726a1da38f8ea3e4ef0a8b524095 Mon Sep 17 00:00:00 2001 From: Daniel Bedeleanu Date: Sun, 12 Apr 2026 07:32:16 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20version=20naming=20format:=20v.X.Y.Z=20?= =?UTF-8?q?=E2=86=92=20vX.Y.Z?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/save_version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/save_version.py b/scripts/save_version.py index 8038b4cc..b1b44279 100644 --- a/scripts/save_version.py +++ b/scripts/save_version.py @@ -51,10 +51,10 @@ def main(): # 2. Git Operations run_command([git, 'add', '.']) - run_command([git, 'commit', '-m', f"Build [v.{new_version}]"]) + run_command([git, 'commit', '-m', f"Build [v{new_version}]"]) # 3. Create branch (snapshot) - branch_name = f"v.{new_version}" + branch_name = f"v{new_version}" run_command([git, 'branch', branch_name]) # 4. Create Production Bundle