From 7e67f4abc77ff921e38d902610336241452805ac Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Sun, 7 Apr 2019 16:11:22 -0700 Subject: Release version 4.3.17 --- CHANGELOG.md | 3 +++ isort/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d83b9d..4da5cb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ Internal: Planned: - profile support for common project types (black, django, google, etc) +### 4.3.17 - April 7, 2019 - hot fix release +- Fixed issue #905 & #919: Import section headers behaving strangely + ### 4.3.16 - March 23, 2019 - hot fix release - Fixed issue #909 - skip and skip-glob are not enforced when using settings-path. - Fixed issue #907 - appdirs optional requirement does not correctly specify version diff --git a/isort/__init__.py b/isort/__init__.py index 353c9976..4314b858 100644 --- a/isort/__init__.py +++ b/isort/__init__.py @@ -22,4 +22,4 @@ OTHER DEALINGS IN THE SOFTWARE. from . import settings # noqa: F401 from .isort import SortImports # noqa: F401 -__version__ = "4.3.15" +__version__ = "4.3.17" diff --git a/setup.py b/setup.py index 52e4a2a9..e48e97a9 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.rst') as f: readme = f.read() setup(name='isort', - version='4.3.15', + version='4.3.17', description='A Python utility / library to sort Python imports.', long_description=readme, author='Timothy Crosley', -- cgit v1.2.1