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' )