Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ae0986

Browse files
committedAug 7, 2020
Merge branch 'develop' of https://github.com/timothycrosley/isort
2 parents 43aa1c8 + 5c0ea8f commit 9ae0986

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed
 

Diff for: ‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Changelog
33

44
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
55

6+
### 5.3.2 [Hotfix] Aug 7, 2020
7+
- Fixed incorrect warning code (W503->W0503).
8+
69
### 5.3.1 Aug 7, 2020
710
- Improve upgrade warnings to be less noisy and point to error codes for easy interoperability with Visual Studio Code (see: #1363).
811

Diff for: ‎isort/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.3.1"
1+
__version__ = "5.3.2"

Diff for: ‎isort/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def __init__(
407407
combined_config.pop(deprecated_option)
408408
if not self.quiet:
409409
warn(
410-
"W503: Deprecated config options were used: "
410+
"W0503: Deprecated config options were used: "
411411
f"{', '.join(deprecated_options_used)}."
412412
"Please see the 5.0.0 upgrade guide: bit.ly/isortv5."
413413
)

Diff for: ‎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.3.1"
6+
version = "5.3.2"
77
description = "A Python utility / library to sort Python imports."
88
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
99
license = "MIT"

0 commit comments

Comments
 (0)
Please sign in to comment.