From eaee9e6a040aae6cc75d446eae7b6a2f403534a7 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Wed, 12 Aug 2020 20:47:09 -0700 Subject: [PATCH] Bump version to 5.4.0 --- CHANGELOG.md | 4 +++- isort/_version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41b36710a..1f2c86b85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,10 @@ Changelog NOTE: isort follows the [semver](https://semver.org/) versioning standard. -### 5.4.0 TBD +### 5.4.0 Aug 12, 2020 - Implemented #1373: support for length sort only of direct (AKA straight) imports. + - Fixed #1380: --combine-as loses # noqa. + - Fixed #1375: --dont-order-by-type CLI broken. ### 5.3.2 [Hotfix] Aug 7, 2020 - Fixed incorrect warning code (W503->W0503). diff --git a/isort/_version.py b/isort/_version.py index 07f0e9e28..fc30498fa 100644 --- a/isort/_version.py +++ b/isort/_version.py @@ -1 +1 @@ -__version__ = "5.3.2" +__version__ = "5.4.0" diff --git a/pyproject.toml b/pyproject.toml index f19a5c9cc..2359eed8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.poetry] name = "isort" -version = "5.3.2" +version = "5.4.0" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"