From 83f6e52c92cb01c9b2f3eb5ded1e3bf939707cae Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 12 Feb 2023 18:39:51 -0500 Subject: [PATCH] Bump version to 0.0.246 (#2834) --- 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 2c0068c69d..c3c5a88a01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -893,7 +893,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flake8-to-ruff" -version = "0.0.245" +version = "0.0.246" dependencies = [ "anyhow", "clap 4.1.4", @@ -2440,7 +2440,7 @@ dependencies = [ [[package]] name = "ruff" -version = "0.0.245" +version = "0.0.246" dependencies = [ "anyhow", "bisection", @@ -2496,7 +2496,7 @@ dependencies = [ [[package]] name = "ruff_cli" -version = "0.0.245" +version = "0.0.246" dependencies = [ "annotate-snippets 0.9.1", "anyhow", @@ -2538,7 +2538,7 @@ dependencies = [ [[package]] name = "ruff_dev" -version = "0.0.245" +version = "0.0.246" dependencies = [ "anyhow", "clap 4.1.4", @@ -2558,7 +2558,7 @@ dependencies = [ [[package]] name = "ruff_macros" -version = "0.0.245" +version = "0.0.246" dependencies = [ "itertools", "proc-macro2", @@ -2569,7 +2569,7 @@ dependencies = [ [[package]] name = "ruff_python" -version = "0.0.245" +version = "0.0.246" dependencies = [ "once_cell", "regex", diff --git a/README.md b/README.md index 925e6f490c..31a2315b92 100644 --- a/README.md +++ b/README.md @@ -232,7 +232,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.245' + rev: 'v0.0.246' hooks: - id: ruff ``` diff --git a/crates/flake8_to_ruff/Cargo.toml b/crates/flake8_to_ruff/Cargo.toml index a8b3890213..6a79d1c804 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.245" +version = "0.0.246" edition = "2021" [dependencies] diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index b2993df7c8..702002853b 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff" -version = "0.0.245" +version = "0.0.246" 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.245", path = "../ruff_macros" } -ruff_python = { version = "0.0.245", path = "../ruff_python" } +ruff_macros = { version = "0.0.246", path = "../ruff_macros" } +ruff_python = { version = "0.0.246", path = "../ruff_python" } rustc-hash = { version = "1.1.0" } rustpython-common = { workspace = true } rustpython-parser = { workspace = true } diff --git a/crates/ruff_cli/Cargo.toml b/crates/ruff_cli/Cargo.toml index ee0c5af8ba..ca420c1cf4 100644 --- a/crates/ruff_cli/Cargo.toml +++ b/crates/ruff_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_cli" -version = "0.0.245" +version = "0.0.246" 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 e988af3c85..2631f54061 100644 --- a/crates/ruff_dev/Cargo.toml +++ b/crates/ruff_dev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_dev" -version = "0.0.245" +version = "0.0.246" edition = "2021" [dependencies] diff --git a/crates/ruff_macros/Cargo.toml b/crates/ruff_macros/Cargo.toml index f440f0ae30..ac87ff9ace 100644 --- a/crates/ruff_macros/Cargo.toml +++ b/crates/ruff_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_macros" -version = "0.0.245" +version = "0.0.246" edition = "2021" [lib] diff --git a/crates/ruff_python/Cargo.toml b/crates/ruff_python/Cargo.toml index f089643786..845644ee60 100644 --- a/crates/ruff_python/Cargo.toml +++ b/crates/ruff_python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_python" -version = "0.0.245" +version = "0.0.246" edition = "2021" [lib] diff --git a/pyproject.toml b/pyproject.toml index a7a56a1cab..09a5045e5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "maturin" [project] name = "ruff" -version = "0.0.245" +version = "0.0.246" 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" }]