Skip to content

Commit e7a2779

Browse files
Bump version to v0.0.289 (#7308)
1 parent 008da95 commit e7a2779

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.288
143+
rev: v0.0.289
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.288"
3+
version = "0.0.289"
44
description = """
55
Convert Flake8 configuration files to Ruff configuration files.
66
"""

crates/ruff/Cargo.toml

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

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.288"
3+
version = "0.0.289"
44
publish = false
55
authors = { workspace = true }
66
edition = { workspace = true }

docs/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ This tutorial has focused on Ruff's command-line interface, but Ruff can also be
242242
```yaml
243243
- repo: https://github.com/astral-sh/ruff-pre-commit
244244
# Ruff version.
245-
rev: v0.0.288
245+
rev: v0.0.289
246246
hooks:
247247
- id: ruff
248248
```

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.288
26+
rev: v0.0.289
2727
hooks:
2828
- id: ruff
2929
```
@@ -33,7 +33,7 @@ Or, to enable autofix:
3333
```yaml
3434
- repo: https://github.com/astral-sh/ruff-pre-commit
3535
# Ruff version.
36-
rev: v0.0.288
36+
rev: v0.0.289
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.288
47+
rev: v0.0.289
4848
hooks:
4949
- id: ruff
5050
types_or: [python, pyi, jupyter]

pyproject.toml

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

66
[project]
77
name = "ruff"
8-
version = "0.0.288"
8+
version = "0.0.289"
99
description = "An extremely fast Python linter, written in Rust."
1010
authors = [{ name = "Charlie Marsh", email = "[email protected]" }]
1111
maintainers = [{ name = "Charlie Marsh", email = "[email protected]" }]

0 commit comments

Comments
 (0)