From df69a0549901043a1958dac9b14ad7de03dcae0e Mon Sep 17 00:00:00 2001 From: staticdev Date: Wed, 21 Dec 2022 21:50:44 +0100 Subject: [PATCH] Bump version 5.11.4 --- CHANGELOG.md | 7 +++++++ docs/configuration/pre-commit.md | 4 ++-- isort/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3012dfbd..9e5cee44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md index e8309543..1281e6e5 100644 --- a/docs/configuration/pre-commit.md +++ b/docs/configuration/pre-commit.md @@ -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) @@ -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) diff --git a/isort/_version.py b/isort/_version.py index 5e263ef9..941c1bcc 100644 --- a/isort/_version.py +++ b/isort/_version.py @@ -1 +1 @@ -__version__ = "5.11.3" +__version__ = "5.11.4" diff --git a/pyproject.toml b/pyproject.toml index b0608a58..744d444f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"