mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
Bumped version for release.
This commit is contained in:
parent
8c6c1cf8ba
commit
9f46f5dafb
2 changed files with 12 additions and 4 deletions
14
CHANGES.rst
14
CHANGES.rst
|
|
@ -4,19 +4,27 @@ CHANGES
|
|||
tip (unreleased)
|
||||
----------------
|
||||
|
||||
1.0.0 (2011.06.16)
|
||||
------------------
|
||||
|
||||
- Fixed using SplitField on an abstract base model.
|
||||
|
||||
- Fixed issue #8, adding ``use_for_related_fields = True`` to
|
||||
``InheritanceManager``.
|
||||
|
||||
- Added ``PassThroughManager``. Thanks Paul McLanahan.
|
||||
|
||||
- Added pending-deprecation warnings for ``InheritanceCastModel``,
|
||||
``manager_from``, and Django 1.1 support. Removed documentation for the
|
||||
deprecated utilities. Bumped ``ChoiceEnum`` from pending-deprecation to
|
||||
deprecation.
|
||||
|
||||
0.6.0 (2011.02.18)
|
||||
------------------
|
||||
|
||||
- Fixed issue #6, bug with InheritanceManager and descriptor fields (e.g.
|
||||
FileField). Thanks zyegfryed for the fix and sayane for tests.
|
||||
|
||||
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.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -26,7 +26,7 @@ long_description = (open('README.rst').read() +
|
|||
|
||||
setup(
|
||||
name='django-model-utils',
|
||||
version='0.6.0.post%s' % hgrev,
|
||||
version='1.0.0',
|
||||
description='Django model mixins and utilities',
|
||||
long_description=long_description,
|
||||
author='Carl Meyer',
|
||||
|
|
|
|||
Loading…
Reference in a new issue