diff --git a/isort/__init__.py b/isort/__init__.py index 082fe5bf8..b6ce8d38a 100644 --- a/isort/__init__.py +++ b/isort/__init__.py @@ -25,4 +25,4 @@ from . import settings from .isort import SortImports -__version__ = "1.2.5" +__version__ = "1.3.0" diff --git a/setup.py b/setup.py index ecd6c4dcb..d0b5a6f08 100755 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ from setuptools import setup setup(name='isort', - version='1.2.5', + version='1.3.0', description='A Python utility / library to sort Python imports.', author='Timothy Crosley', author_email='timothy.crosley@gmail.com', url='https://github.com/timothycrosley/isort', - download_url='https://github.com/timothycrosley/isort/archive/1.2.5.tar.gz', + download_url='https://github.com/timothycrosley/isort/archive/1.3.0.tar.gz', license="MIT", scripts=['scripts/isort'], packages=['isort'],