Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/timothycrosley/isort
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Aug 7, 2020
2 parents 43aa1c8 + 5c0ea8f commit 9ae0986
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Changelog

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

### 5.3.2 [Hotfix] Aug 7, 2020
- Fixed incorrect warning code (W503->W0503).

### 5.3.1 Aug 7, 2020
- Improve upgrade warnings to be less noisy and point to error codes for easy interoperability with Visual Studio Code (see: #1363).

Expand Down
2 changes: 1 addition & 1 deletion isort/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.3.1"
__version__ = "5.3.2"
2 changes: 1 addition & 1 deletion isort/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def __init__(
combined_config.pop(deprecated_option)
if not self.quiet:
warn(
"W503: Deprecated config options were used: "
"W0503: Deprecated config options were used: "
f"{', '.join(deprecated_options_used)}."
"Please see the 5.0.0 upgrade guide: bit.ly/isortv5."
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line-length = 100

[tool.poetry]
name = "isort"
version = "5.3.1"
version = "5.3.2"
description = "A Python utility / library to sort Python imports."
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 9ae0986

Please sign in to comment.