Skip to content

Commit f5a2fb5

Browse files
Bump version to 0.0.280 (#5965)
1 parent 94a004e commit f5a2fb5

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.279
143+
rev: v0.0.280
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.279"
3+
version = "0.0.280"
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.279"
3+
version = "0.0.280"
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.279"
3+
version = "0.0.280"
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.279
245+
rev: v0.0.280
246246
hooks:
247247
- id: ruff
248248
```

docs/usage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com) hook:
2222
```yaml
2323
- repo: https://github.com/astral-sh/ruff-pre-commit
2424
# Ruff version.
25-
rev: v0.0.279
25+
rev: v0.0.280
2626
hooks:
2727
- id: ruff
2828
```
@@ -32,7 +32,7 @@ Or, to enable autofix:
3232
```yaml
3333
- repo: https://github.com/astral-sh/ruff-pre-commit
3434
# Ruff version.
35-
rev: v0.0.279
35+
rev: v0.0.280
3636
hooks:
3737
- id: ruff
3838
args: [ --fix, --exit-non-zero-on-fix ]
@@ -43,7 +43,7 @@ Or, to run the hook on Jupyter Notebooks too:
4343
```yaml
4444
- repo: https://github.com/astral-sh/ruff-pre-commit
4545
# Ruff version.
46-
rev: v0.0.279
46+
rev: v0.0.280
4747
hooks:
4848
- id: ruff
4949
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.279"
8+
version = "0.0.280"
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)