From c6c25dfde2d99acd8ebfee462a0a5abe5907e760 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Fri, 13 Sep 2013 22:32:50 -0400 Subject: [PATCH] Release 1.3.0 --- isort/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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'],