From b4335b41767a34a35a82c8c6be3a17db913b3100 Mon Sep 17 00:00:00 2001 From: staticdev Date: Wed, 13 Dec 2023 21:33:32 +0100 Subject: [PATCH] Prepare version 5.13.2 --- CHANGELOG.md | 6 ++++++ docs/configuration/pre-commit.md | 4 ++-- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f0fba6..065e5a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.13.2 December 13 2023 + + - Apply the bracket fix from issue #471 only for use_parentheses=True (#2184) @bp72 + - Confine pre-commit to stages (#2213) @davidculley + - Fixed colors extras (#2212) @staticdev + ### 5.13.1 December 11 2023 - Fixed integration tests (#2208) @bp72 diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md index 85640416..f33f291d 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.13.1 + rev: 5.13.2 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.13.1 + rev: 5.13.2 hooks: - id: isort name: isort (python) diff --git a/pyproject.toml b/pyproject.toml index 9b2e6f23..f4d3ecda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.poetry] name = "isort" -version = "5.13.1" +version = "5.13.2" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"