From 112eb306f19ea068a4be510046a3a791ca85a843 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Mon, 12 Dec 2022 23:16:35 -0800 Subject: [PATCH] Update version to 5.11.2 --- CHANGELOG.md | 4 ++++ docs/configuration/pre-commit.md | 4 ++-- isort/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea8fb14..91538837 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.2 December 12 2022 + + - Hotfix #2034: isort --version is not accurate on 5.11.x releases (#2034) @gschaffner + ### 5.11.1 December 12 2022 - Hotfix #2031: only call `colorama.init` if `colorama` is available (#2032) @tomaarsen diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md index b4cf3381..582a9a48 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.1 + rev: 5.11.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.11.1 + rev: 5.11.2 hooks: - id: isort name: isort (python) diff --git a/isort/_version.py b/isort/_version.py index 86d9cbd9..077e490d 100644 --- a/isort/_version.py +++ b/isort/_version.py @@ -1 +1 @@ -__version__ = "5.11.1" +__version__ = "5.11.2" diff --git a/pyproject.toml b/pyproject.toml index fdb43c4c..a868291e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.poetry] name = "isort" -version = "5.11.1" +version = "5.11.2" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"