preparing for v0.8.0

This commit is contained in:
Paul Gauthier 2023-07-06 14:03:06 -07:00
parent c5f8f564a4
commit 44311f4737
2 changed files with 6 additions and 1 deletions

View file

@ -2,6 +2,10 @@
### Next release
- Glob wildcards are now supported in `/add` and `/drop` commands
### v0.8.0
- [Benchmark comparing code editing in GPT-3.5 and GPT-4](https://aider.chat/docs/benchmarks.html)
- Improved Windows support:
- Fixed bugs related to path separators in Windows
@ -10,7 +14,6 @@
- Explicitly read/write text files with utf-8 encoding by default (mainly affects Windows)
- Added `--encoding` switch to specify another encoding
- Gracefully handle decoding errors
- Glob wildcards are now supported in `/add` and `/drop` commands
- Added `--code-theme` switch to control the pygments styling of code blocks (by @kwmiebach)
- Better status messages explaining the reason ctags is disabled

View file

@ -42,6 +42,8 @@ def show_stats(dirnames):
row = summarize_results(dirname)
raw_rows.append(row)
return
repeats = []
seen = dict()
rows = []