From a16f91eed1e4ccb2ce5709ce66ad40a13afe8bfe Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 23:25:51 -0700 Subject: [PATCH 1/2] aider: Added `--no-auto-commits` argument to README.md. # Context: USER: add the --no-auto-commit arg to readme ASSISTANT: I will add the `--no-auto-commits` argument to the README.md file. ```markdown README.md <<<<<<< ORIGINAL - `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True). ======= - `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True). - `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled). >>>>>>> UPDATED ``` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e31c6c35b..c12f88652 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ You can also use additional command-line options to customize the behavior of th - `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work). No environment variable override. - `--no-pretty`: Disable pretty, colorized output. Override the default with the environment variable `AIDER_PRETTY` (default: 1 for enabled, 0 for disabled). - `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True). +- `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled). For more information, run `aider --help`. From 5490dc11d0bf375efcf66acd2806c8b9580b7b3c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 23:26:22 -0700 Subject: [PATCH 2/2] Updated version number to 0.2.0 in setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5526f917f..8a41207d8 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("requirements.txt") as f: setup( name="aider", - version="0.1.0", + version="0.2.0", packages=find_packages(), install_requires=requirements, entry_points={