From 42459c35b0f686f2a505bf79057ba3e4bbbe76ff Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 30 Jan 2023 17:50:26 -0500 Subject: [PATCH] Update BREAKING_CHANGES.md --- BREAKING_CHANGES.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index 4412356900..02e9e727a9 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -1,6 +1,6 @@ # Breaking Changes -## Unreleased +## 0.0.239 ### `select`, `extend-select`, `ignore`, and `extend-ignore` have new semantics ([#2312](https://github.com/charliermarsh/ruff/pull/2312)) @@ -32,6 +32,11 @@ ignore = ["F401"] Running `ruff --select F` would previously have enabled all `F` rules, apart from `F401`. Now, it will enable all `F` rules, including `F401`, as the command line's `--select` resets the resolution. +### `remove-six-compat` (`UP016`) has been removed ([#2332](https://github.com/charliermarsh/ruff/pull/2332)) + +The `remove-six-compat` rule has been removed. This rule was only useful for one-time Python 2-to-3 +upgrades. + ## 0.0.238 ### `--explain`, `--clean`, and `--generate-shell-completion` are now subcommands ([#2190](https://github.com/charliermarsh/ruff/pull/2190))