Skip to content

Commit 98390f5

Browse files
authored
Merge pull request #2059 from PyCQA/version/5.11.4
Bump version 5.11.4
2 parents f9add58 + df69a05 commit 98390f5

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Changelog
44
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
55
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).
66

7+
### 5.11.4 December 21 2022
8+
9+
- Fixed #2038 (again): stop installing documentation files to top-level site-packages (#2057) @mgorny
10+
- CI: only run release workflows for upstream (#2052) @hugovk
11+
- Tests: remove obsolete toml import from the test suite (#1978) @mgorny
12+
- CI: bump Poetry 1.3.1 (#2058) @staticdev
13+
714
### 5.11.3 December 16 2022
815

916
- Fixed #2007: settings for py3.11 (#2040) @staticdev

docs/configuration/pre-commit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use isort's official pre-commit integration add the following config:
99

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

2121
```yaml
2222
- repo: https://github.com/pycqa/isort
23-
rev: 5.11.3
23+
rev: 5.11.4
2424
hooks:
2525
- id: isort
2626
name: isort (python)

isort/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.11.3"
1+
__version__ = "5.11.4"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 100
33

44
[tool.poetry]
55
name = "isort"
6-
version = "5.11.3"
6+
version = "5.11.4"
77
description = "A Python utility / library to sort Python imports."
88
authors = ["Timothy Crosley <[email protected]>"]
99
license = "MIT"

0 commit comments

Comments
 (0)