diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b9dca54c..3c504a2fb 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.5.1 September 4, 2020 + - Fixed #1454: Ensure indented import sections with import heading and a preceding comment don't cause import sorting loops. + - Fixed #1453: isort error when float to top on almost empty file. + - Fixed #1456 and #1415: noqa comment moved to where flake8 cant see it. + - Fixed #1460: .svn missing from default ignore list. + ### 5.5.0 September 3, 2020 - Fixed #1398: isort: off comment doesn't work, if it's the top comment in the file. - Fixed #1395: reverse_relative setting doesn't have any effect when combined with force_sort_within_sections. diff --git a/isort/_version.py b/isort/_version.py index 016ab6b2b..f680f9ffe 100644 --- a/isort/_version.py +++ b/isort/_version.py @@ -1 +1 @@ -__version__ = "5.5.0" +__version__ = "5.5.1" diff --git a/pyproject.toml b/pyproject.toml index 7cdcba27a..3aff16105 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.poetry] name = "isort" -version = "5.5.0" +version = "5.5.1" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"