From 706be0a6e7e09936511198f2ff8982915520d138 Mon Sep 17 00:00:00 2001 From: Dylan Date: Thu, 18 Sep 2025 14:37:29 -0500 Subject: [PATCH] Add `pyproject.toml` to rooster config `version_files` and bump to 0.13.1 (#20475) It looks like the new `rooster` does not automatically bump `pyproject.toml`. This should fix the following failure for the release action: https://github.com/astral-sh/ruff/actions/runs/17839256763/job/50724254795 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6dea47443d..0fbb073761 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "ruff" -version = "0.13.0" +version = "0.13.1" description = "An extremely fast Python linter and code formatter, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] readme = "README.md" @@ -115,6 +115,7 @@ ignore_labels = ["internal", "ci", "testing", "ty"] version_files = [ "README.md", + "pyproject.toml", "docs/integrations.md", "docs/tutorial.md", "crates/ruff/Cargo.toml",