mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
Bump version and update changelog for 2.5.1 release.
This commit is contained in:
parent
f2bf61f46c
commit
5904008eab
2 changed files with 9 additions and 6 deletions
13
CHANGES.rst
13
CHANGES.rst
|
|
@ -1,25 +1,28 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
master (unreleased)
|
||||
2.5.1 (2016.08.03)
|
||||
-------------------
|
||||
|
||||
* Fix `InheritanceQuerySet` raising an `AttributeError` exception
|
||||
* Fix `InheritanceQuerySet` raising an `AttributeError` exception
|
||||
under Django 1.9.
|
||||
|
||||
* Django 1.10 support regressed with changes between pre-alpha and final
|
||||
release; 1.10 currently not supported.
|
||||
|
||||
2.5 (2016-04-18)
|
||||
|
||||
2.5 (2016.04.18)
|
||||
----------------
|
||||
|
||||
* Drop support for Python 3.2.
|
||||
|
||||
* Add support for Django 1.10.
|
||||
* Add support for Django 1.10 pre-alpha.
|
||||
|
||||
* Track foreign keys on parent models properly when a tracker
|
||||
is defined on a child model. Fixes GH-214.
|
||||
|
||||
|
||||
2.4 (2015-12-03)
|
||||
2.4 (2015.12.03)
|
||||
----------------
|
||||
|
||||
* Remove `PassThroughManager`. Use Django's built-in `QuerySet.as_manager()`
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from .choices import Choices
|
||||
from .tracker import FieldTracker, ModelTracker
|
||||
|
||||
__version__ = '2.5.1a1'
|
||||
__version__ = '2.5.1'
|
||||
|
|
|
|||
Loading…
Reference in a new issue