From d953a69237c69646908c4acd0633f738fd38b8d0 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Sat, 4 Jul 2020 03:20:01 -0700 Subject: [PATCH] Fix line length for black profile --- CHANGELOG.md | 3 +++ docs/configuration/profiles.md | 1 + pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac0d20cff..3948e35bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ Changelog NOTE: isort follows the [semver](https://semver.org/) versioning standard. +### 5.0.2 - July 4, 2020 + - Ensured black profile was complete, adding missing line_length definition. + ### 5.0.1 - July 4, 2020 - Fixed a runtime error in a vendored dependency (toml). diff --git a/docs/configuration/profiles.md b/docs/configuration/profiles.md index 792ff988c..8f859f232 100644 --- a/docs/configuration/profiles.md +++ b/docs/configuration/profiles.md @@ -15,6 +15,7 @@ To use any of the listed profiles, use `isort --profile PROFILE_NAME` from the c - **force_grid_wrap**: `0` - **use_parentheses**: `True` - **ensure_newline_before_comments**: `True` + - **line_length**: `88` #django diff --git a/pyproject.toml b/pyproject.toml index e70d2c344..775e8c363 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "isort" -version = "5.0.1" +version = "5.0.2" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"