Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version 5.11.4 #2059

Merged
merged 1 commit into from Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,13 @@ Changelog
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).

### 5.11.4 December 21 2022

- Fixed #2038 (again): stop installing documentation files to top-level site-packages (#2057) @mgorny
- CI: only run release workflows for upstream (#2052) @hugovk
- Tests: remove obsolete toml import from the test suite (#1978) @mgorny
- CI: bump Poetry 1.3.1 (#2058) @staticdev

### 5.11.3 December 16 2022

- Fixed #2007: settings for py3.11 (#2040) @staticdev
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/pre-commit.md
Expand Up @@ -9,7 +9,7 @@ To use isort's official pre-commit integration add the following config:

```yaml
- repo: https://github.com/pycqa/isort
rev: 5.11.3
rev: 5.11.4
hooks:
- id: isort
name: isort (python)
Expand All @@ -20,7 +20,7 @@ over different file types (ex: python vs cython vs pyi) you can do so with the f

```yaml
- repo: https://github.com/pycqa/isort
rev: 5.11.3
rev: 5.11.4
hooks:
- id: isort
name: isort (python)
Expand Down
2 changes: 1 addition & 1 deletion isort/_version.py
@@ -1 +1 @@
__version__ = "5.11.3"
__version__ = "5.11.4"
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -3,7 +3,7 @@ line-length = 100

[tool.poetry]
name = "isort"
version = "5.11.3"
version = "5.11.4"
description = "A Python utility / library to sort Python imports."
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"
Expand Down