diff --git a/HISTORY.md b/HISTORY.md index 6cf4e3304..e7201212b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,8 +1,13 @@ # Release history -### main branch +### v0.11.1 -- Fixed /commit bug from repo refactor, added test coverage +- Added a progress bar when initially creating a repo map. +- Fixed bad commit message when adding new file to empty repo. +- Fixed corner case of pending chat history summarization when dirty committing. +- Fixed corner case of undefined `text` when using `--no-pretty`. +- Fixed /commit bug from repo refactor, added test coverage. +- [Benchmarked](https://aider.chat/docs/benchmarks.html) at 53.4% for gpt-3.5/whole (no regression). ### v0.11.0 diff --git a/README.md b/README.md index cf5e4e959..21bb06b85 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ -# aider is GPT powered coding in your terminal +# aider is AI pair programming in your terminal -`aider` is a command-line chat tool that allows you to write and edit -code with OpenAI's GPT models. You can ask GPT to help you start -a new project, or modify code in your existing git repo. -Aider makes it easy to -[git commit, diff & undo changes](https://aider.chat/docs/faq.html#how-does-aider-use-git) -proposed by GPT without copy/pasting. -It also has features that [help GPT-4 understand and modify larger codebases](https://aider.chat/docs/ctags.html). +Aider is a command line tool that lets you pair program with GPT-3.5/GPT-4, +to edit code stored in your local git repository. +You can start a new project or work with an existing repo. +And you can fluidly switch back and forth between the aider chat where you ask +GPT to edit the code and your own editor to make changes yourself. +Aider makes sure edits from you and GPT are +[committed to git](https://aider.chat/docs/faq.html#how-does-aider-use-git) +with sensible commit messages. +Aider is unique in that it [works well with pre-existing, larger codebases](https://aider.chat/docs/ctags.html).

aider screencast @@ -43,7 +45,7 @@ $ aider hello.js Using git repo: .git Added hello.js to the chat. -hello.js> write a js app that prints hello world +hello.js> write a js script that prints hello world ``` ## Example chat transcripts diff --git a/_layouts/default.html b/_layouts/default.html index 771b6635a..8e4956b1a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -20,7 +20,7 @@