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
This commit is contained in:
Dylan 2025-09-18 14:37:29 -05:00 committed by GitHub
parent 7b40428b6a
commit 706be0a6e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project] [project]
name = "ruff" name = "ruff"
version = "0.13.0" version = "0.13.1"
description = "An extremely fast Python linter and code formatter, written in Rust." description = "An extremely fast Python linter and code formatter, written in Rust."
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
readme = "README.md" readme = "README.md"
@ -115,6 +115,7 @@ ignore_labels = ["internal", "ci", "testing", "ty"]
version_files = [ version_files = [
"README.md", "README.md",
"pyproject.toml",
"docs/integrations.md", "docs/integrations.md",
"docs/tutorial.md", "docs/tutorial.md",
"crates/ruff/Cargo.toml", "crates/ruff/Cargo.toml",