Run the version bump script.
(bump_type: str)
| 506 | |
| 507 | |
| 508 | def run_version_bump(bump_type: str): |
| 509 | """Run the version bump script.""" |
| 510 | print(f"📈 Running version bump: {bump_type}") |
| 511 | |
| 512 | bump_script = ROOT / "scripts" / "bump" / "bump_version.py" |
| 513 | if not bump_script.exists(): |
| 514 | sys.exit(f"❌ Bump script not found: {bump_script}") |
| 515 | |
| 516 | run_cmd(f"python {bump_script} {bump_type}") |
| 517 | print("✅ Version bump completed") |
| 518 | |
| 519 | |
| 520 | def create_pull_request(new_version: str, description: str, branch_name: str): |