From af95d4d272fb60d5801158fa86bf9fbad78ed6d8 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Sat, 14 Sep 2013 22:54:18 -0400 Subject: [PATCH] Release 1.3.1 --- 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 b6ce8d38a..5debcbcbc 100644 --- a/isort/__init__.py +++ b/isort/__init__.py @@ -25,4 +25,4 @@ from . import settings from .isort import SortImports -__version__ = "1.3.0" +__version__ = "1.3.1" diff --git a/setup.py b/setup.py index ace357728..9e7c7631b 100755 --- a/setup.py +++ b/setup.py @@ -6,12 +6,12 @@ from distutils.core import setup setup(name='isort', - version='1.3.0', + version='1.3.1', 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.3.0.tar.gz', + download_url='https://github.com/timothycrosley/isort/archive/1.3.1.tar.gz', license="MIT", scripts=['scripts/isort'], packages=['isort'],