Skip to content

Commit

Permalink
Bump version to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Feb 17, 2016
1 parent 14a5417 commit 3bab378
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
18 changes: 16 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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)
--------------------------
Expand All @@ -15,7 +27,7 @@ Version 0.8 (2015-12-28)
* Renamed ``polymorphic.manager`` => ``polymorphic.managers`` for consistentcy.
* **BACKWARDS INCOMPATIBILITY:** The import paths have changed to support Django 1.9.
Instead of ``from polymorphic import X``,
you'll have to import from the proper package. For example:
you'll have to import from the proper package. For example:

.. code-block:: python
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# 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.
Expand Down
2 changes: 1 addition & 1 deletion polymorphic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
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.
Expand Down

0 comments on commit 3bab378

Please sign in to comment.