File tree 4 files changed +6
-3
lines changed 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Changelog
3
3
4
4
NOTE: isort follows the [ semver] ( https://semver.org/ ) versioning standard.
5
5
6
+ ### 5.3.2 [ Hotfix] Aug 7, 2020
7
+ - Fixed incorrect warning code (W503->W0503).
8
+
6
9
### 5.3.1 Aug 7, 2020
7
10
- Improve upgrade warnings to be less noisy and point to error codes for easy interoperability with Visual Studio Code (see: #1363 ).
8
11
Original file line number Diff line number Diff line change 1
- __version__ = "5.3.1 "
1
+ __version__ = "5.3.2 "
Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ def __init__(
407
407
combined_config .pop (deprecated_option )
408
408
if not self .quiet :
409
409
warn (
410
- "W503 : Deprecated config options were used: "
410
+ "W0503 : Deprecated config options were used: "
411
411
f"{ ', ' .join (deprecated_options_used )} ."
412
412
"Please see the 5.0.0 upgrade guide: bit.ly/isortv5."
413
413
)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ line-length = 100
3
3
4
4
[tool .poetry ]
5
5
name = " isort"
6
- version = " 5.3.1 "
6
+ version = " 5.3.2 "
7
7
description = " A Python utility / library to sort Python imports."
8
8
authors = [
" Timothy Crosley <[email protected] >" ]
9
9
license = " MIT"
You can’t perform that action at this time.
0 commit comments