Bump version for release.

This commit is contained in:
Carl Meyer 2011-02-18 16:47:52 -05:00
parent 1bd1bbb7b7
commit d6b017ee6e
2 changed files with 7 additions and 3 deletions

View file

@ -1,8 +1,12 @@
CHANGES
=======
tip (unreleased)
----------------
0.6.0 (2011.02.18)
------------------
- updated SplitField to define get_prep_value rather than get_db_prep_value.
This avoids deprecation warnings on Django trunk/1.3, but makes SplitField
incompatible with Django versions prior to 1.2.
- added InheritanceManager, a better approach to selecting subclass instances
for Django 1.2+. Thanks Jeff Elmore.

View file

@ -26,7 +26,7 @@ long_description = (open('README.rst').read() +
setup(
name='django-model-utils',
version='0.5.0.post%s' % hgrev,
version='0.6.0',
description='Django model mixins and utilities',
long_description=long_description,
author='Carl Meyer',