summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-10 22:22:17 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-10 23:00:11 -0700
commit1bf5d5861aca01e70389cbf87b65eccdd023b8c5 (patch)
treeb2324b75aedd5f4326dfdc419edc4725c54eddfb
parent6b975085e691bcdd0503dcfb66cbdfc49df5fe59 (diff)
downloadisort-1bf5d5861aca01e70389cbf87b65eccdd023b8c5.tar.gz
Bump version
-rw-r--r--isort/__init__.py2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/isort/__init__.py b/isort/__init__.py
index 9760659f..353c9976 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.14"
+__version__ = "4.3.15"
diff --git a/setup.py b/setup.py
index 2f590c6c..796354a0 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.14',
+ version='4.3.15',
description='A Python utility / library to sort Python imports.',
long_description=readme,
author='Timothy Crosley',