summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-09 22:01:19 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-09 22:11:45 -0800
commitf1b6cc86da12292d02bab82da62bacc42d8719ca (patch)
tree9a20f6bf83b8957a517dabe638de56441ccc3397
parenteaf5437f3b80cac2e1c0bb581b24add823c0475f (diff)
downloadisort-f1b6cc86da12292d02bab82da62bacc42d8719ca.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 342606e8..9760659f 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.12"
+__version__ = "4.3.14"
diff --git a/setup.py b/setup.py
index 4e798eed..2f590c6c 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.12',
+ version='4.3.14',
description='A Python utility / library to sort Python imports.',
long_description=readme,
author='Timothy Crosley',