Skip to content

Commit c6d0bdd

Browse files
Bump Ruff version to v0.0.292 (#7761)
1 parent 75f759e commit c6d0bdd

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com) hook:
140140
```yaml
141141
- repo: https://github.com/astral-sh/ruff-pre-commit
142142
# Ruff version.
143-
rev: v0.0.291
143+
rev: v0.0.292
144144
hooks:
145145
- id: ruff
146146
```

crates/flake8_to_ruff/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flake8-to-ruff"
3-
version = "0.0.291"
3+
version = "0.0.292"
44
description = """
55
Convert Flake8 configuration files to Ruff configuration files.
66
"""

crates/ruff_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruff_cli"
3-
version = "0.0.291"
3+
version = "0.0.292"
44
publish = false
55
authors = { workspace = true }
66
edition = { workspace = true }

crates/ruff_linter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruff_linter"
3-
version = "0.0.291"
3+
version = "0.0.292"
44
publish = false
55
authors = { workspace = true }
66
edition = { workspace = true }

docs/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ This tutorial has focused on Ruff's command-line interface, but Ruff can also be
247247
```yaml
248248
- repo: https://github.com/astral-sh/ruff-pre-commit
249249
# Ruff version.
250-
rev: v0.0.291
250+
rev: v0.0.292
251251
hooks:
252252
- id: ruff
253253
```

docs/usage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com) hook:
2323
```yaml
2424
- repo: https://github.com/astral-sh/ruff-pre-commit
2525
# Ruff version.
26-
rev: v0.0.291
26+
rev: v0.0.292
2727
hooks:
2828
- id: ruff
2929
```
@@ -33,7 +33,7 @@ Or, to enable fixes:
3333
```yaml
3434
- repo: https://github.com/astral-sh/ruff-pre-commit
3535
# Ruff version.
36-
rev: v0.0.291
36+
rev: v0.0.292
3737
hooks:
3838
- id: ruff
3939
args: [ --fix, --exit-non-zero-on-fix ]
@@ -44,7 +44,7 @@ Or, to run the hook on Jupyter Notebooks too:
4444
```yaml
4545
- repo: https://github.com/astral-sh/ruff-pre-commit
4646
# Ruff version.
47-
rev: v0.0.291
47+
rev: v0.0.292
4848
hooks:
4949
- id: ruff
5050
types_or: [python, pyi, jupyter]

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "ruff"
7-
version = "0.0.291"
7+
version = "0.0.292"
88
description = "An extremely fast Python linter, written in Rust."
99
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
1010
readme = "README.md"

0 commit comments

Comments
 (0)