Bump version to 0.9
parent
14a5417891
commit
3bab378b25
|
|
@ -1,5 +1,17 @@
|
|||
Changelog
|
||||
==========
|
||||
=========
|
||||
|
||||
Version 0.9 (2016-02-17)
|
||||
------------------------
|
||||
|
||||
* Added ``.only()`` and ``.defer()`` support.
|
||||
* Added support for Django 1.8 complex expressions in ``.annotate()`` / ``.aggregate()``.
|
||||
* Fix Django 1.9 handling of custom URLs.
|
||||
The new change-URL redirect overlapped any custom URLs defined in the child admin.
|
||||
* Fix Django 1.9 support in the admin.
|
||||
* Fix missing ``history_view`` redirection to the child admin, which is important for django-reversion_ support.
|
||||
See the documentation for hints for :ref:`django-reversion-compare support <django-reversion-compare-support>`.
|
||||
|
||||
|
||||
Version 0.8.1 (2015-12-29)
|
||||
--------------------------
|
||||
|
|
@ -188,3 +200,5 @@ For a detailed list of it's changes, see the :doc:`archived changelog <changelog
|
|||
|
||||
.. _Grappelli: http://grappelliproject.com/
|
||||
.. _django-parler: https://github.com/edoburu/django-parler
|
||||
.. _django-reversion: https://github.com/etianen/django-reversion
|
||||
.. _django-reversion-compare: https://github.com/jedie/django-reversion-compare
|
||||
|
|
|
|||
|
|
@ -55,9 +55,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.8.1'
|
||||
version = '0.9'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.8.1'
|
||||
release = '0.9'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ This code and affiliated files are (C) by Bert Constantin and individual contrib
|
|||
Please see LICENSE and AUTHORS for more information.
|
||||
"""
|
||||
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
|
||||
__version__ = "0.8.1"
|
||||
__version__ = "0.9"
|
||||
|
||||
|
||||
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.
|
||||
|
|
|
|||
Loading…
Reference in New Issue