-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6d8076
commit 0263f27
Showing
9 changed files
with
68 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "ruff" | ||
version = "0.1.8" | ||
version = "0.1.9" | ||
description = "An extremely fast Python linter and code formatter, written in Rust." | ||
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }] | ||
readme = "README.md" | ||
|
@@ -74,7 +74,7 @@ force-exclude = ''' | |
major_labels = [] # Ruff never uses the major version number | ||
minor_labels = ["breaking"] # Bump the minor version on breaking changes | ||
|
||
changelog_ignore_labels = ["internal"] | ||
changelog_ignore_labels = ["internal", "ci"] | ||
|
||
changelog_sections.breaking = "Breaking changes" | ||
changelog_sections.preview = "Preview features" | ||
|
@@ -91,7 +91,7 @@ changelog_sections.__unknown__ = "Other changes" | |
changelog_contributors = false | ||
|
||
version_files = [ | ||
"README.md", | ||
"README.md", | ||
"docs/integrations.md", | ||
"crates/flake8_to_ruff/Cargo.toml", | ||
"crates/ruff_cli/Cargo.toml", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "scripts" | ||
version = "0.1.8" | ||
version = "0.1.9" | ||
description = "" | ||
authors = ["Charles Marsh <[email protected]>"] | ||
|
||
|