Skip to content

Commit 5c0ea8f

Browse files
Hotfix release to fix warning code
1 parent 4832796 commit 5c0ea8f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
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

isort/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.3.1"
1+
__version__ = "5.3.2"

isort/settings.py

Lines changed: 1 addition & 1 deletion
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
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
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 <[email protected]>"]
99
license = "MIT"

0 commit comments

Comments
 (0)