Skip to content

Commit

Permalink
docs(CHANGES): Note ruff automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Mar 24, 2024
1 parent c5c5ec9 commit d89fe4a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@ $ pip install --user --upgrade --pre libtmux

<!-- To maintainers and contributors: Please add notes for the forthcoming version above -->

### Development

- Aggressive automated lint fixes via `ruff` (#539)

via ruff v0.3.4, all automated lint fixes, including unsafe and previews were applied:

```sh
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
```

Branches were treated with:

```sh
git rebase \
--strategy-option=theirs \
--exec 'poetry run ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; poetry run ruff format .; git add src tests; git commit --amend --no-edit' \
origin/master
```

## libtmux 0.35.1 (2024-03-23)

### Bug fix
Expand Down

0 comments on commit d89fe4a

Please sign in to comment.