Bump version to v0.1.13 (#9493)

This commit is contained in:
Charlie Marsh 2024-01-12 09:27:39 -05:00 committed by GitHub
parent 1602df1643
commit d16c4a2d25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 21 additions and 12 deletions

View file

@ -1,5 +1,14 @@
# Changelog # Changelog
## 0.1.13
### Bug fixes
- Include base pyproject when initializing cache settings ([#9480](https://github.com/astral-sh/ruff/pull/9480))
- \[`flake8-simplify`\] Account for possibly-empty f-string values in truthiness logic ([#9484](https://github.com/astral-sh/ruff/pull/9484))
- \[`pylint`\] Add the missing period in `unnecessary-dunder-call` ([#9485](https://github.com/astral-sh/ruff/pull/9485))
- \[`pylint`\] Fix `__aenter__` message in `unnecessary-dunder-call` ([#9492](https://github.com/astral-sh/ruff/pull/9492))
## 0.1.12 ## 0.1.12
### Preview features ### Preview features

6
Cargo.lock generated
View file

@ -2038,7 +2038,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_cli" name = "ruff_cli"
version = "0.1.12" version = "0.1.13"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"argfile", "argfile",
@ -2165,7 +2165,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_linter" name = "ruff_linter"
version = "0.1.12" version = "0.1.13"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"annotate-snippets 0.9.2", "annotate-snippets 0.9.2",
@ -2417,7 +2417,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_shrinking" name = "ruff_shrinking"
version = "0.1.12" version = "0.1.13"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",

View file

@ -150,7 +150,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com/) hook via [`ruff
```yaml ```yaml
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.1.12 rev: v0.1.13
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ruff_cli" name = "ruff_cli"
version = "0.1.12" version = "0.1.13"
publish = false publish = false
authors = { workspace = true } authors = { workspace = true }
edition = { workspace = true } edition = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ruff_linter" name = "ruff_linter"
version = "0.1.12" version = "0.1.13"
publish = false publish = false
authors = { workspace = true } authors = { workspace = true }
edition = { workspace = true } edition = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ruff_shrinking" name = "ruff_shrinking"
version = "0.1.12" version = "0.1.13"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -14,7 +14,7 @@ Ruff can be used as a [pre-commit](https://pre-commit.com) hook via [`ruff-pre-c
```yaml ```yaml
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.1.12 rev: v0.1.13
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff
@ -27,7 +27,7 @@ To enable lint fixes, add the `--fix` argument to the lint hook:
```yaml ```yaml
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.1.12 rev: v0.1.13
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff
@ -41,7 +41,7 @@ To run the hooks over Jupyter Notebooks too, add `jupyter` to the list of allowe
```yaml ```yaml
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.1.12 rev: v0.1.13
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff

View file

@ -4,7 +4,7 @@ build-backend = "maturin"
[project] [project]
name = "ruff" name = "ruff"
version = "0.1.12" version = "0.1.13"
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"

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "scripts" name = "scripts"
version = "0.1.12" version = "0.1.13"
description = "" description = ""
authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"] authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"]