Skip to content

Commit a6222a8

Browse files
Bump version to 5.8.0
1 parent 43cfa47 commit a6222a8

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
55
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy/).
66

7-
### 5.8.0 TBD
7+
### 5.8.0 March 20th 2021
88
- Fixed #1631: as import comments can in some cases be duplicated.
99
- Fixed #1667: extra newline added with float-to-top, after skip, in some cases.
1010
- Fixed #1594: incorrect placement of noqa comments with multiple from imports.

isort/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.7.0"
1+
__version__ = "5.8.0"

isort/settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ class _Config:
212212
overwrite_in_place: bool = False
213213
reverse_sort: bool = False
214214
star_first: bool = False
215+
import_dependencies = Dict[str, str]
215216

216217
def __post_init__(self):
217218
py_version = self.py_version

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 100
33

44
[tool.poetry]
55
name = "isort"
6-
version = "5.7.0"
6+
version = "5.8.0"
77
description = "A Python utility / library to sort Python imports."
88
authors = ["Timothy Crosley <[email protected]>"]
99
license = "MIT"

0 commit comments

Comments
 (0)