10BC0 Bump version to v0.5.4 (#12423) · astral-sh/ruff@3664f85 · GitHub
[go: up one dir, main page]

Skip to content
  • Insights
  • Commit 3664f85

    Browse files
    Bump version to v0.5.4 (#12423)
    1 parent 2c1926b commit 3664f85

    File tree

    9 files changed

    +31
    -14
    lines changed

    9 files changed

    +31
    -14
    lines changed

    CHANGELOG.md

    Lines changed: 17 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -1,5 +1,22 @@
    11
    # Changelog
    22

    3+
    ## 0.5.4
    4+
    5+
    ### Rule changes
    6+
    7+
    - \[`ruff` \] Rename `RUF007` to `zip-instead-of-pairwise` ([#12399](https://github.com/astral-sh/ruff/pull/12399))
    8+
    9+
    ### Bug fixes
    10+
    11+
    - \[`flake8- builtins` \] A void shadowing diagnostics for `@override` methods ([#12415](https://github.com/astral-sh/ruff/pull/12415))
    12+
    - \[`flake8-comprehensions` \] Insert parentheses for multi-argument generators ([#12422](https://github.com/astral-sh/ruff/pull/12422))
    13+
    - \[`pydocstyle`\] Handle e scaped docstrings within docstring (`D301`) ([#12192](https://github.com/astral-sh/ruff/pull/12192))
    14+
    15+
    ### Documentation
    16+
    17+
    - Fix GitHub link to Neovim setup ([#12410](https://github.com/astral-sh/ruff/pull/12410))
    18+
    - Fix `output-format` default in settings reference ([#12409](https://github.com/astral-sh/ruff/pull/12409))
    19+
    320
    ## 0.5.3
    421

    522
    **Ruff 0.5.3 marks the stable release of the Ruff language server and introduces revamped

    Cargo.lock

    Lines changed: 3 additions & 3 deletions
    Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

    README.md

    Lines changed: 3 additions & 3 deletions
    Original file line numberDiff line numberDiff line change
    @@ -136,8 +136,8 @@ curl -LsSf https://astral.sh/ruff/install.sh | sh
    136136
    powershell -c "irm https://astral.sh/ruff/install.ps1 | iex"
    137137

    138138
    # For a specific version.
    139-
    curl -LsSf https://astral.sh/ruff/0.5.3/install.sh | sh
    140-
    powershell -c "irm https://astral.sh/ruff/0.5.3/install.ps1 | iex"
    139+
    curl -LsSf https://astral.sh/ruff/0.5.4/install.sh | sh
    140+
    powershell -c "irm https://astral.sh/ruff/0.5.4/install.ps1 | iex"
    141141
    ```
    142142

    143143
    You can also install Ruff via [Homebrew](https://formulae.brew.sh/formula/ruff), [Conda](https://anaconda.org/conda-forge/ruff),
    @@ -170,7 +170,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com/) hook via [`ruff
    170170
    ```yaml
    171171
    - repo: https://github.com/astral-sh/ruff-pre-commit
    172172
    # Ruff version.
    173-
    rev: v0.5.3
    173+
    rev: v0.5.4
    174174
    hooks:
    175175
    # Run the linter.
    176176
    - id: ruff

    crates/ruff/Cargo.toml

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -1,6 +1,6 @@
    11
    [package]
    22
    name = "ruff"
    3-
    version = "0.5.3"
    3+
    version = "0.5.4"
    44
    publish = true
    55
    authors = { workspace = true }
    66
    edition = { workspace = true }

    crates/ruff_linter/Cargo.toml

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -1,6 +1,6 @@
    11
    [package]
    22
    name = "ruff_linter"
    3-
    version = "0.5.3"
    3+
    version = "0.5.4"
    44
    publish = false
    55
    authors = { workspace = true }
    66
    edition = { workspace = true }

    crates/ruff_wasm/Cargo.toml

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -1,6 +1,6 @@
    11
    [package]
    22
    name = "ruff_wasm"
    3-
    version = "0.5.3"
    3+
    version = "0.5.4"
    44
    publish = false
    55
    authors = { workspace = true }
    66
    edition = { workspace = true }

    docs/integrations.md

    Lines changed: 3 additions & 3 deletions
    Original file line numberDiff line numberDiff line change
    @@ -78,7 +78,7 @@ Ruff can be used as a [pre-commit](https://pre-commit.com) hook via [`ruff-pre-c
    7878
    ```yaml
    7979
    - repo: https://github.com/astral-sh/ruff-pre-commit
    8080
    # Ruff version.
    81-
    rev: v0.5.3
    81+
    rev: v0.5.4
    8282
    hooks:
    8383
    # Run the linter.
    8484
    - id: ruff
    @@ -91,7 +91,7 @@ To enable lint fixes, add the `--fix` argument to the lint hook:
    9191
    ```yaml
    9292
    - repo: https://github.com/astral-sh/ruff-pre-commit
    9393
    # Ruff version.
    94-
    rev: v0.5.3
    94+
    rev: v0.5.4
    9595
    hooks:
    9696
    # Run the linter.
    9797
    - id: ruff
    @@ -105,7 +105,7 @@ To run the hooks over Jupyter Notebooks too, add `jupyter` to the list of allowe
    105105
    ```yaml
    106106
    - repo: https://github.com/astral-sh/ruff-pre-commit
    107107
    # Ruff version.
    108-
    rev: v0.5.3
    108+
    rev: v0.5.4
    109109
    hooks:
    110110
    # Run the linter.
    111111
    - id: ruff

    pyproject.toml

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -4,7 +4,7 @@ build-backend = "maturin"
    44

    55
    [project]
    66
    name = "ruff"
    7-
    version = "0.5.3"
    7+
    version = "0.5.4"
    88
    description = "An extremely fast Python linter and code formatter, written in Rust."
    99
    authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
    1010
    readme = "README.md"

    scripts/benchmarks/pyproject.toml

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -1,6 +1,6 @@
    11
    [tool.poetry]
    22
    name = "scripts"
    3-
    version = "0.5.3"
    3+
    version = "0.5.4"
    44
    description = ""
    55
    authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"]
    66

    0 commit comments

    Comments
     (0)
    0