From bf718fdf26631cc30bca7d8661aa405ee2714d31 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 6 Feb 2023 21:22:54 -0500 Subject: [PATCH] Bump Ruff version to 0.0.243 --- Cargo.lock | 12 ++++++------ README.md | 2 +- crates/flake8_to_ruff/Cargo.toml | 2 +- crates/ruff/Cargo.toml | 6 +++--- crates/ruff_cli/Cargo.toml | 2 +- crates/ruff_dev/Cargo.toml | 2 +- crates/ruff_macros/Cargo.toml | 2 +- crates/ruff_python/Cargo.toml | 2 +- pyproject.toml | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7edb8a08a0..792a25d92a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -747,7 +747,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flake8-to-ruff" -version = "0.0.242" +version = "0.0.243" dependencies = [ "anyhow", "clap 4.1.4", @@ -1896,7 +1896,7 @@ dependencies = [ [[package]] name = "ruff" -version = "0.0.242" +version = "0.0.243" dependencies = [ "anyhow", "bisection", @@ -1953,7 +1953,7 @@ dependencies = [ [[package]] name = "ruff_cli" -version = "0.0.242" +version = "0.0.243" dependencies = [ "annotate-snippets 0.9.1", "anyhow", @@ -1989,7 +1989,7 @@ dependencies = [ [[package]] name = "ruff_dev" -version = "0.0.242" +version = "0.0.243" dependencies = [ "anyhow", "clap 4.1.4", @@ -2010,7 +2010,7 @@ dependencies = [ [[package]] name = "ruff_macros" -version = "0.0.242" +version = "0.0.243" dependencies = [ "once_cell", "proc-macro2", @@ -2021,7 +2021,7 @@ dependencies = [ [[package]] name = "ruff_python" -version = "0.0.242" +version = "0.0.243" dependencies = [ "once_cell", "regex", diff --git a/README.md b/README.md index 7873c0a841..55948e79fe 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ Ruff also works with [pre-commit](https://pre-commit.com): ```yaml - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: 'v0.0.242' + rev: 'v0.0.243' hooks: - id: ruff ``` diff --git a/crates/flake8_to_ruff/Cargo.toml b/crates/flake8_to_ruff/Cargo.toml index 06897b355e..55b70a7632 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.242" +version = "0.0.243" edition = "2021" [dependencies] diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index 2a5762f6d1..f6620afd3e 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff" -version = "0.0.242" +version = "0.0.243" authors = ["Charlie Marsh "] edition = "2021" rust-version = "1.65.0" @@ -39,8 +39,8 @@ num-traits = "0.2.15" once_cell = { version = "1.16.0" } path-absolutize = { version = "3.0.14", features = ["once_cell_cache", "use_unix_paths_on_wasm"] } regex = { version = "1.6.0" } -ruff_macros = { version = "0.0.242", path = "../ruff_macros" } -ruff_python = { version = "0.0.242", path = "../ruff_python" } +ruff_macros = { version = "0.0.243", path = "../ruff_macros" } +ruff_python = { version = "0.0.243", path = "../ruff_python" } rustc-hash = { version = "1.1.0" } rustpython-ast = { features = ["unparse"], git = "https://github.com/RustPython/RustPython.git", rev = "adc23253e4b58980b407ba2760dbe61681d752fc" } rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "adc23253e4b58980b407ba2760dbe61681d752fc" } diff --git a/crates/ruff_cli/Cargo.toml b/crates/ruff_cli/Cargo.toml index 99c1f701e6..a29f637ac6 100644 --- a/crates/ruff_cli/Cargo.toml +++ b/crates/ruff_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_cli" -version = "0.0.242" +version = "0.0.243" authors = ["Charlie Marsh "] edition = "2021" rust-version = "1.65.0" diff --git a/crates/ruff_dev/Cargo.toml b/crates/ruff_dev/Cargo.toml index 6aa093a60d..b7da271bee 100644 --- a/crates/ruff_dev/Cargo.toml +++ b/crates/ruff_dev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_dev" -version = "0.0.242" +version = "0.0.243" edition = "2021" [dependencies] diff --git a/crates/ruff_macros/Cargo.toml b/crates/ruff_macros/Cargo.toml index 4eb8f837cb..8bca75e99f 100644 --- a/crates/ruff_macros/Cargo.toml +++ b/crates/ruff_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_macros" -version = "0.0.242" +version = "0.0.243" edition = "2021" [lib] diff --git a/crates/ruff_python/Cargo.toml b/crates/ruff_python/Cargo.toml index d52a155db9..e12f51222b 100644 --- a/crates/ruff_python/Cargo.toml +++ b/crates/ruff_python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_python" -version = "0.0.242" +version = "0.0.243" edition = "2021" [lib] diff --git a/pyproject.toml b/pyproject.toml index 631e7416fb..a613a3c48b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "maturin" [project] name = "ruff" -version = "0.0.242" +version = "0.0.243" description = "An extremely fast Python linter, written in Rust." authors = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }] maintainers = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }]