diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fc648e..1cd6314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ See [here](https://github.com/charliermarsh/ruff/releases) for the Ruff release notes. +## 2023.58.0 + +This release avoids surfacing errors when formatting files with syntax errors. + +**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2023.56.0...2023.58.0 + ## 2023.56.0 This release fixes a bug in which the bundled version of Ruff was incompatible with ARM diff --git a/package-lock.json b/package-lock.json index 3f5a882..d67adf4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ruff", - "version": "2023.56.0", + "version": "2023.58.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ruff", - "version": "2023.56.0", + "version": "2023.58.0", "license": "MIT", "dependencies": { "fs-extra": "^11.1.1", diff --git a/package.json b/package.json index 2fa30ce..fd0d673 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ruff", "displayName": "Ruff", "description": "A Visual Studio Code extension with support for the Ruff linter.", - "version": "2023.56.0", + "version": "2023.58.0", "serverInfo": { "name": "Ruff", "module": "ruff" diff --git a/pyproject.toml b/pyproject.toml index cd15f19..9863f4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "ruff-vscode" -version = "2023.56.0" +version = "2023.58.0" description = "A Visual Studio Code extension with support for the Ruff linter." authors = [ { name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }, @@ -16,7 +16,7 @@ requires-python = ">=3.7" license = "MIT" dependencies = [ "packaging>=23.1", - "ruff-lsp==0.0.47", + "ruff-lsp==0.0.48", "ruff==0.1.8", ] diff --git a/requirements-dev.txt b/requirements-dev.txt index dbfd4f8..b9f76e3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -95,9 +95,9 @@ ruff==0.1.8 \ # via # ruff-lsp # ruff-vscode (./pyproject.toml) -ruff-lsp==0.0.47 \ - --hash=sha256:039989961d54ffa0d0702317de5022c5f68102fb8298d7e78050edbc63f14c84 \ - --hash=sha256:ff535835411a93fe2e7c97eb094ce376681fc28e44ec6451cd0542d8c152faa4 +ruff-lsp==0.0.48 \ + --hash=sha256:21a1c292631f323401362149c2299a7d9cf2b0296af62e8380cf1d23612bae1a \ + --hash=sha256:efc0381d43e34aef4b5fdecd6c84f8a1f3a52aa2c0cb2a4d73bb4b7075095e93 # via ruff-vscode (./pyproject.toml) tomli==2.0.1 \ --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \ diff --git a/requirements.txt b/requirements.txt index e90b613..76b9008 100644 --- a/requirements.txt +++ b/requirements.txt @@ -59,9 +59,9 @@ ruff==0.1.8 \ # via # ruff-lsp # ruff-vscode (./pyproject.toml) -ruff-lsp==0.0.47 \ - --hash=sha256:039989961d54ffa0d0702317de5022c5f68102fb8298d7e78050edbc63f14c84 \ - --hash=sha256:ff535835411a93fe2e7c97eb094ce376681fc28e44ec6451cd0542d8c152faa4 +ruff-lsp==0.0.48 \ + --hash=sha256:21a1c292631f323401362149c2299a7d9cf2b0296af62e8380cf1d23612bae1a \ + --hash=sha256:efc0381d43e34aef4b5fdecd6c84f8a1f3a52aa2c0cb2a4d73bb4b7075095e93 # via ruff-vscode (./pyproject.toml) typing-extensions==4.7.1 \ --hash=sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36 \