From bf1373a3291387aadae2c0629ecc7da4f164ea80 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Wed, 27 Mar 2013 20:59:19 -0600 Subject: [PATCH] Bump version to 1.3.0. --- CHANGES.rst | 4 ++-- setup.py | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2135d7b..516abe5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ CHANGES ======= -tip (unreleased) ----------------- +1.3.0 (2013.03.27) +------------------ - Allow specifying default value for a ``StatusField``. Thanks Felipe Prenholato. diff --git a/setup.py b/setup.py index 0ae8c1a..66ec6b0 100644 --- a/setup.py +++ b/setup.py @@ -8,15 +8,15 @@ long_description = (open('README.rst').read() + setup( name='django-model-utils', - version='1.2.0.post1', + version='1.3.0', description='Django model mixins and utilities', long_description=long_description, author='Carl Meyer', - author_email='carl@dirtcircle.com', - url='http://bitbucket.org/carljm/django-model-utils/', + author_email='carl@oddbird.net', + url='https://github.com/carljm/django-model-utils/', packages=find_packages(), classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', @@ -25,6 +25,6 @@ setup( 'Framework :: Django', ], zip_safe=False, - tests_require=["Django>=1.1"], + tests_require=["Django>=1.2"], test_suite='runtests.runtests' )