mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
docs: update HISTORY.md and remove git operations from versionbump.py
This commit is contained in:
parent
de84a08924
commit
6cddc800f1
2 changed files with 2 additions and 4 deletions
|
@ -3,10 +3,11 @@
|
||||||
|
|
||||||
### Aider v0.56.0
|
### Aider v0.56.0
|
||||||
|
|
||||||
|
- Enables prompt caching for Sonnet via OpenRouter.
|
||||||
|
- Enables 8k output tokens for Sonnet via VertexAI and DeepSeek V2.5.
|
||||||
- New `/report` command to open your browser with a pre-populated GitHub Issue.
|
- New `/report` command to open your browser with a pre-populated GitHub Issue.
|
||||||
- New `--chat-language` switch to set the spoken language.
|
- New `--chat-language` switch to set the spoken language.
|
||||||
- Now `--[no-]suggest-shell-commands` controls both prompting for and offering to execute shell commands.
|
- Now `--[no-]suggest-shell-commands` controls both prompting for and offering to execute shell commands.
|
||||||
- DeepSeek models use 8192 output tokens.
|
|
||||||
- Check key imports on launch, provide helpful error message if dependencies aren't available.
|
- Check key imports on launch, provide helpful error message if dependencies aren't available.
|
||||||
- Renamed `--models` to `--list-models`.
|
- Renamed `--models` to `--list-models`.
|
||||||
- Numerous bug fixes for corner case crashes.
|
- Numerous bug fixes for corner case crashes.
|
||||||
|
|
|
@ -157,9 +157,6 @@ def main():
|
||||||
print(f"Removing {version_file}")
|
print(f"Removing {version_file}")
|
||||||
if not dry_run:
|
if not dry_run:
|
||||||
os.remove(version_file)
|
os.remove(version_file)
|
||||||
subprocess.run(["git", "add", version_file], check=True)
|
|
||||||
subprocess.run(["git", "commit", "-m", f"Remove {version_file}"], check=True)
|
|
||||||
subprocess.run(["git", "push", "origin", "--no-verify"], check=True)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue