mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00

# Context: USER: make sure `new_version` is a 3 piece semver ASSISTANT: I will update the `scripts/versionbump.py` script to ensure that `new_version` is a 3-piece semver. ```python scripts/versionbump.py <<<<<<< ORIGINAL new_version = version.parse(args.new_version) if not isinstance(new_version, version.Version): raise ValueError("Invalid version format") ======= new_version_str = args.new_version if not re.match(r'^\d+\.\d+\.\d+$', new_version_str): raise ValueError("Invalid version format, must be x.y.z") new_version = version.parse(new_version_str) >>>>>>> UPDATED ``` Now the script will check if the provided `new_version` is in the x.y.z format before proceeding.
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
import argparse
|
|
import os
|
|
import re
|
|
import subprocess
|
|
from packaging import version
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(description="Bump version")
|
|
parser.add_argument("new_version", help="New version in x.y.z format")
|
|
parser.add_argument("--dry-run", action="store_true", help="Print each step without actually executing them")
|
|
args = parser.parse_args()
|
|
dry_run = args.dry_run
|
|
|
|
new_version_str = args.new_version
|
|
if not re.match(r'^\d+\.\d+\.\d+$', new_version_str):
|
|
raise ValueError("Invalid version format, must be x.y.z")
|
|
|
|
new_version = version.parse(new_version_str)
|
|
|
|
with open("aider/__init__.py", "r") as f:
|
|
content = f.read()
|
|
|
|
current_version = re.search(r'__version__ = "(.+?)"', content).group(1)
|
|
if new_version <= version.parse(current_version):
|
|
raise ValueError(f"New version {new_version} must be greater than the current version {current_version}")
|
|
|
|
updated_content = re.sub(r'__version__ = ".+?"', f'__version__ = "{new_version}"', content)
|
|
|
|
if dry_run:
|
|
print("Updating aider/__init__.py with new version:")
|
|
print(updated_content)
|
|
else:
|
|
with open("aider/__init__.py", "w") as f:
|
|
f.write(updated_content)
|
|
|
|
git_commands = [
|
|
["git", "add", "aider/__init__.py"],
|
|
["git", "commit", "-m", f"version bump to {new_version}"],
|
|
["git", "tag", f"v{new_version}"],
|
|
["git", "push", "origin"],
|
|
["git", "push", "origin", f"v{new_version}"],
|
|
]
|
|
|
|
for cmd in git_commands:
|
|
if dry_run:
|
|
print(f"Running: {' '.join(cmd)}")
|
|
else:
|
|
subprocess.run(cmd, check=True)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|