Skip to content

Commit

Permalink
Bump extension version to 2023.42.0 (#305)
Browse files Browse the repository at this point in the history
Closes #303
  • Loading branch information
zanieb authored Oct 16, 2023
1 parent fbbc48a commit 61a40bc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

See [here](https://github.com/charliermarsh/ruff/releases) for the Ruff release notes.

## 2023.42.0

This release is required for compatibility with [Ruff v0.1.0+](https://github.com/astral-sh/ruff/releases/v0.1.0)
which includes breaking changes.

Ruff fixes are now labeled as "safe" or "unsafe". By default, the "Fix all" action will no longer apply unsafe
fixes. However, unsafe fixes can be applied manually with the "Quick fix" action. Application of unsafe fixes when
using "Fix all" can be enabled by setting `unsafe-fixes = true` in your Ruff configuration file or adding
`--unsafe-fixes` flag to the "Lint args" setting.

**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2023.40.0...2023.42.0

## 2023.40.0

- **Deprecation**: `ruff.args` has been renamed to `ruff.lint.args` (see: https://github.com/astral-sh/ruff-vscode/pull/293).
Expand All @@ -10,6 +22,8 @@ See [here](https://github.com/charliermarsh/ruff/releases) for the Ruff release
The extension will continue to respect the deprecated variants (`ruff.args` and `ruff.run`), but
they will be removed in a future release.

**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2023.38.0...2023.40.0

## 2023.38.0

**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2023.36.0...2023.38.0
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ruff",
"displayName": "Ruff",
"description": "A Visual Studio Code extension with support for the Ruff linter.",
"version": "2023.40.0",
"version": "2023.42.0",
"serverInfo": {
"name": "Ruff",
"module": "ruff"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "ruff-vscode"
version = "2023.40.0"
version = "2023.42.0"
description = "A Visual Studio Code extension with support for the Ruff linter."
authors = [
{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" },
Expand Down

0 comments on commit 61a40bc

Please sign in to comment.