Skip to content

Commit 260ea41

Browse files
Bump version to v0.1.4 (#8477)
1 parent 65effc6 commit 260ea41

File tree

10 files changed

+18
-19
lines changed

10 files changed

+18
-19
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,9 @@ ruff format @arguments.txt # Format using an input file, treating its
148148
Ruff can also be used as a [pre-commit](https://pre-commit.com/) hook via [`ruff-pre-commit`](https://github.com/astral-sh/ruff-pre-commit):
149149

150150
```yaml
151-
# Run the Ruff linter.
152151
- repo: https://github.com/astral-sh/ruff-pre-commit
153152
# Ruff version.
154-
rev: v0.1.3
153+
rev: v0.1.4
155154
hooks:
156155
# Run the Ruff linter.
157156
- id: ruff

crates/flake8_to_ruff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flake8-to-ruff"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = """
55
Convert Flake8 configuration files to Ruff configuration files.
66
"""

crates/ruff_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruff_cli"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
publish = false
55
authors = { workspace = true }
66
edition = { workspace = true }

crates/ruff_linter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruff_linter"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
publish = false
55
authors = { workspace = true }
66
edition = { workspace = true }

crates/ruff_shrinking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruff_shrinking"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

docs/integrations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ which supports fix actions, import sorting, and more.
1212
Ruff can be used as a [pre-commit](https://pre-commit.com) hook via [`ruff-pre-commit`](https://github.com/astral-sh/ruff-pre-commit):
1313

1414
```yaml
15-
# Run the Ruff formatter.
15+
# Run the Ruff linter.
1616
- repo: https://github.com/astral-sh/ruff-pre-commit
1717
# Ruff version.
1818
rev: v0.0.291
1919
hooks:
20-
- id: ruff-format
21-
# Run the Ruff linter.
20+
- id: ruff
21+
# Run the Ruff formatter.
2222
- repo: https://github.com/astral-sh/ruff-pre-commit
2323
# Ruff version.
2424
rev: v0.0.291
2525
hooks:
26-
- id: ruff
26+
- id: ruff-format
2727
```
2828
2929
To enable fixes, add the `--fix` argument to the linter:
@@ -47,7 +47,7 @@ To run the hooks over Jupyter Notebooks too, add `jupyter` to the list of allowe
4747
rev: v0.0.291
4848
hooks:
4949
- id: ruff
50-
types_or: [python, pyi, jupyter]
50+
types_or: [ python, pyi, jupyter ]
5151
```
5252

5353
Ruff's lint hook should be placed after other formatting tools, such as Ruff's format hook, Black,

docs/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@ This tutorial has focused on Ruff's command-line interface, but Ruff can also be
284284
# Run the Ruff linter.
285285
- repo: https://github.com/astral-sh/ruff-pre-commit
286286
# Ruff version.
287-
rev: v0.1.3
287+
rev: v0.1.4
288288
hooks:
289289
- id: ruff
290290
# Run the Ruff formatter.
291291
- repo: https://github.com/astral-sh/ruff-pre-commit
292292
# Ruff version.
293-
rev: v0.1.3
293+
rev: v0.1.4
294294
hooks:
295295
- id: ruff-format
296296
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

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

scripts/benchmarks/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "scripts"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = ""
55
authors = ["Charles Marsh <[email protected]>"]
66

0 commit comments

Comments
 (0)