From c6d0bdd5723e4c15b2b425e84fdb1b4ca5379700 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 2 Oct 2023 12:14:47 -0400 Subject: [PATCH] Bump Ruff version to v0.0.292 (#7761) --- Cargo.lock | 6 +++--- README.md | 2 +- crates/flake8_to_ruff/Cargo.toml | 2 +- crates/ruff_cli/Cargo.toml | 2 +- crates/ruff_linter/Cargo.toml | 2 +- docs/tutorial.md | 2 +- docs/usage.md | 6 +++--- pyproject.toml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2b02f50cd85a9..c0c7795d90b2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -810,7 +810,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flake8-to-ruff" -version = "0.0.291" +version = "0.0.292" dependencies = [ "anyhow", "clap", @@ -2028,7 +2028,7 @@ dependencies = [ [[package]] name = "ruff_cli" -version = "0.0.291" +version = "0.0.292" dependencies = [ "annotate-snippets 0.9.1", "anyhow", @@ -2164,7 +2164,7 @@ dependencies = [ [[package]] name = "ruff_linter" -version = "0.0.291" +version = "0.0.292" dependencies = [ "aho-corasick", "annotate-snippets 0.9.1", diff --git a/README.md b/README.md index e4dc9a06129d8..e464c8978f61b 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com) hook: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff ``` diff --git a/crates/flake8_to_ruff/Cargo.toml b/crates/flake8_to_ruff/Cargo.toml index 97603dbc13a31..f1cbf4046bd47 100644 --- a/crates/flake8_to_ruff/Cargo.toml +++ b/crates/flake8_to_ruff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flake8-to-ruff" -version = "0.0.291" +version = "0.0.292" description = """ Convert Flake8 configuration files to Ruff configuration files. """ diff --git a/crates/ruff_cli/Cargo.toml b/crates/ruff_cli/Cargo.toml index 8828560eb190a..f30caa7552ccc 100644 --- a/crates/ruff_cli/Cargo.toml +++ b/crates/ruff_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_cli" -version = "0.0.291" +version = "0.0.292" publish = false authors = { workspace = true } edition = { workspace = true } diff --git a/crates/ruff_linter/Cargo.toml b/crates/ruff_linter/Cargo.toml index 814940ffa8e5d..e069f7dd8786f 100644 --- a/crates/ruff_linter/Cargo.toml +++ b/crates/ruff_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_linter" -version = "0.0.291" +version = "0.0.292" publish = false authors = { workspace = true } edition = { workspace = true } diff --git a/docs/tutorial.md b/docs/tutorial.md index 89dec0c3e1d6c..7f5e5506bdae8 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -247,7 +247,7 @@ This tutorial has focused on Ruff's command-line interface, but Ruff can also be ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff ``` diff --git a/docs/usage.md b/docs/usage.md index 12f0a6071f637..81a56aba70672 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -23,7 +23,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com) hook: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff ``` @@ -33,7 +33,7 @@ Or, to enable fixes: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff args: [ --fix, --exit-non-zero-on-fix ] @@ -44,7 +44,7 @@ Or, to run the hook on Jupyter Notebooks too: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff types_or: [python, pyi, jupyter] diff --git a/pyproject.toml b/pyproject.toml index 38fa4b39ee224..5c5cc803df143 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "ruff" -version = "0.0.291" +version = "0.0.292" description = "An extremely fast Python linter, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] readme = "README.md"