Skip to content

Commit

Permalink
Bump version to 2022.0.19 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh authored Dec 2, 2022
1 parent 9eba524 commit 99214d1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 25 deletions.
18 changes: 6 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

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

## 2022.0.18 (1 December 2022)
## 2022.0.19 (1 December 2022)

* Restore Python 3.7 compatibility by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/44

What's Changed
**Full Changelog**: https://github.com/charliermarsh/vscode-ruff/compare/2022.0.18...2022.0.19

## 2022.0.18 (1 December 2022)

* Enable `ruff: Organize Imports` action by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/32
* Bump Ruff version to 0.0.149 by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/33
Expand All @@ -26,26 +30,20 @@ What's Changed

## 2022.0.16 (25 November 2022)

What's Changed

* Publish to OpenVSX by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/30
* Bump Ruff version to 0.0.138 by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/31

**Full Changelog**: https://github.com/charliermarsh/vscode-ruff/compare/2022.0.15...2022.0.16

## 2022.0.15 (20 November 2022)

What's Changed

* Bump Ruff version to 0.0.132 by @charliermarsh in https://github.com/charliermarsh/vscode-ruff/pull/27
* add changelog.md by @akanz1 in https://github.com/charliermarsh/vscode-ruff/pull/24

**Full Changelog**: https://github.com/charliermarsh/vscode-ruff/compare/2022.0.14...2022.0.15

## 2022.0.14 (15 November 2022)

What's Changed

* Update README.md by @akanz1 in [#21](https://github.com/charliermarsh/vscode-ruff/pull/21)
* Bump Ruff version to 0.0.121 by @charliermarsh in [#22](https://github.com/charliermarsh/vscode-ruff/pull/22)
* Bump version to 2022.0.14 by @charliermarsh in [#23](https://github.com/charliermarsh/vscode-ruff/pull/23)
Expand All @@ -54,15 +52,11 @@ What's Changed

## 2022.0.13 (13 November 2022)

What's Changed

* Use scripts path when interpreter is set by @charliermarsh in [#18](https://github.com/charliermarsh/vscode-ruff/pull/18)
* Bump Ruff version to 0.0.117 by @charliermarsh in [#19](https://github.com/charliermarsh/vscode-ruff/pull/19)

**Full Changelog**: https://github.com/charliermarsh/vscode-ruff/compare/2022.0.12...2022.0.13

## 2022.0.12 (11 November 2022)

What's Changed

* Add .idea and .ruff_cache to .vscodeignore by @charliermarsh in [#14](https://github.com/charliermarsh/vscode-ruff/pull/14)
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ The extension ships with `ruff==0.0.150`.

### "Quick Fix" actions for auto-fixable violations (like unused imports)

![Dec-01-2022 17-59-31](https://user-images.githubusercontent.com/1309177/205176932-44cfc03a-120f-4bad-b710-612bdd7765d6.gif)
![](https://user-images.githubusercontent.com/1309177/205176932-44cfc03a-120f-4bad-b710-612bdd7765d6.gif)

### "Fix all": automatically fix all auto-fixable violations

![Dec-01-2022 17-51-14](https://user-images.githubusercontent.com/1309177/205175763-cf34871d-5c05-4abf-9916-440afc82dbf8.gif)
![](https://user-images.githubusercontent.com/1309177/205175763-cf34871d-5c05-4abf-9916-440afc82dbf8.gif)

### "Organize Imports": `isort`-compatible import sorting

![Dec-01-2022 17-52-39](https://user-images.githubusercontent.com/1309177/205175987-82e23e21-14bb-467d-9ef0-027f24b75865.gif)
![](https://user-images.githubusercontent.com/1309177/205175987-82e23e21-14bb-467d-9ef0-027f24b75865.gif)

## Usage

Expand Down Expand Up @@ -65,13 +65,12 @@ This extension is based on the [Template for VS Code Python tools extensions](ht
2. Install `nox` in the activated environment: `python -m pip install nox`.
3. Run `nox --session setup`.

### Linting
### Development

To run linters: `nox --session lint`.

### Testing

To run tests: `nox --session tests`.
- `nox --session fmt`
- `nox --session lint`
- `nox --session typecheck`
- `nox --session test`

### Packaging and Publishing

Expand Down
2 changes: 1 addition & 1 deletion bundled/tool/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def update_sys_path(path_to_add: str, strategy: str) -> None:
MAX_WORKERS = 5
LSP_SERVER = server.LanguageServer(
name="Ruff",
version="2022.0.18",
version="2022.0.19",
max_workers=MAX_WORKERS,
)

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": "2022.0.18",
"version": "2022.0.19",
"serverInfo": {
"name": "Ruff",
"module": "ruff"
Expand Down

0 comments on commit 99214d1

Please sign in to comment.