diff --git a/CHANGELOG.md b/CHANGELOG.md index de3034d..1817cec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ See [here](https://github.com/astral-sh/ruff/releases) for the Ruff release notes. +## 2024.44.0 + +This release upgrades the bundled Ruff version to `v0.6.4`, and the bundled `ruff-lsp` +version to `0.0.56`. + +- Use "application" scope for global only settings (`ruff.logLevel`, `ruff.logFile`) (#594) +- Always include "Show Logs" button in Ruff notification (#600) + +**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2024.42.0...2024.44.0 + ## 2024.42.0 This release upgrades the bundled Ruff version to `v0.6.1`, and the bundled `ruff-lsp` diff --git a/package-lock.json b/package-lock.json index 386a816..fc721b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ruff", - "version": "2024.42.0", + "version": "2024.44.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ruff", - "version": "2024.42.0", + "version": "2024.44.0", "license": "MIT", "dependencies": { "@vscode/python-extension": "^1.0.5", diff --git a/package.json b/package.json index 34ff412..b8b6e9a 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": "2024.42.0", + "version": "2024.44.0", "serverInfo": { "name": "Ruff", "module": "ruff" diff --git a/pyproject.toml b/pyproject.toml index ad9590f..1a74756 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "ruff-vscode" -version = "2024.42.0" +version = "2024.44.0" description = "A Visual Studio Code extension with support for the Ruff linter." authors = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }] maintainers = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }]