mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
wip
This commit is contained in:
parent
c4e4bc71ed
commit
1ed48de928
1 changed files with 6 additions and 3 deletions
|
@ -109,11 +109,14 @@ def main():
|
|||
|
||||
print("Updating aider/__init__.py with new version:")
|
||||
print(updated_content)
|
||||
if not dry_run:
|
||||
with open("aider/__init__.py", "w") as f:
|
||||
f.write(updated_content)
|
||||
# if not dry_run:
|
||||
# with open("aider/__init__.py", "w") as f:
|
||||
# f.write(updated_content)
|
||||
|
||||
git_commands = [
|
||||
["git", "push", "origin"],
|
||||
]
|
||||
[
|
||||
["git", "add", "aider/__init__.py"],
|
||||
["git", "commit", "-m", f"version bump to {new_version}"],
|
||||
["git", "tag", f"v{new_version}"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue