Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 2024.6.0 #400

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 2024.6.0

This release upgrades the Ruff LSP in anticipation of Ruff's upcoming v0.2.0 release

**Full Changelog**: https://github.com/astral-sh/ruff-vscode/compare/2024.4.0...2024.6.0

## 2024.4.0

This release upgrades the bundled Ruff version to v0.1.14 and adds two additional settings
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": "2024.5.0-dev",
"version": "2024.6.0",
"serverInfo": {
"name": "Ruff",
"module": "ruff"
Expand Down
4 changes: 2 additions & 2 deletions 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 = "2024.5.0-dev"
version = "2024.6.0"
description = "A Visual Studio Code extension with support for the Ruff linter."
authors = [
{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" },
Expand All @@ -16,7 +16,7 @@ requires-python = ">=3.7"
license = "MIT"
dependencies = [
"packaging>=23.1",
"ruff-lsp==0.0.50",
"ruff-lsp==0.0.51",
"ruff==0.1.15",
]

Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ ruff==0.1.15 \
# via
# ruff-lsp
# ruff-vscode (./pyproject.toml)
ruff-lsp==0.0.50 \
--hash=sha256:b0ae08a63084a37b4c0f85d4f144717ad5b454bc7d605014ab1b64fc5e52b9b2 \
--hash=sha256:e16b496c1ba82f29d7e9b9c24add835998f323795a746f507ea8f967346b916b
ruff-lsp==0.0.51 \
--hash=sha256:6411486a0c304d44153c09dca2636d84c692d206799ee61c4942981d2c503eb5 \
--hash=sha256:9e4416d7ea0105381dffccad8b0f6a83918e5dcca3b213c0a50434120f15e8a0
# via ruff-vscode (./pyproject.toml)
tomli==2.0.1 \
--hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ ruff==0.1.15 \
# via
# ruff-lsp
# ruff-vscode (./pyproject.toml)
ruff-lsp==0.0.50 \
--hash=sha256:b0ae08a63084a37b4c0f85d4f144717ad5b454bc7d605014ab1b64fc5e52b9b2 \
--hash=sha256:e16b496c1ba82f29d7e9b9c24add835998f323795a746f507ea8f967346b916b
ruff-lsp==0.0.51 \
--hash=sha256:6411486a0c304d44153c09dca2636d84c692d206799ee61c4942981d2c503eb5 \
--hash=sha256:9e4416d7ea0105381dffccad8b0f6a83918e5dcca3b213c0a50434120f15e8a0
# via ruff-vscode (./pyproject.toml)
typing-extensions==4.7.1 \
--hash=sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36 \
Expand Down
Loading