Bump versions to 0.7

fix_request_path_info
Diederik van der Boor 2015-04-08 14:08:47 +02:00
parent 363463e290
commit 07e1ff90a8
3 changed files with 6 additions and 5 deletions

View File

@ -1,14 +1,15 @@
Changelog Changelog
========== ==========
Version 0.7 (in git) Version 0.7 (2015-04-08)
-------------------- ------------------------
* Added Django 1.8 support * Added Django 1.8 support
* Added support for custom primary key defined using ``mybase_ptr = models.OneToOneField(BaseClass, parent_link=True, related_name="...")``. * Added support for custom primary key defined using ``mybase_ptr = models.OneToOneField(BaseClass, parent_link=True, related_name="...")``.
* Fixed Python 3 issue in the admin * Fixed Python 3 issue in the admin
* Fixed ``_default_manager`` to be consistent with Django, it's now assigned directly instead of using ``add_to_class()`` * Fixed ``_default_manager`` to be consistent with Django, it's now assigned directly instead of using ``add_to_class()``
* Fixed 500 error for admin URLs without a '/', e.g. ``admin/app/parentmodel/id``. * Fixed 500 error for admin URLs without a '/', e.g. ``admin/app/parentmodel/id``.
* Fixed preserved filter for Django admin in delete views
* Removed test noise for diamond inheritance problem (which Django 1.7 detects) * Removed test noise for diamond inheritance problem (which Django 1.7 detects)

View File

@ -54,9 +54,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.6.1' version = '0.7'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.6.1' release = '0.7'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -11,4 +11,4 @@ Release logic:
6. git commit 6. git commit
7. push to github 7. push to github
""" """
__version__ = "0.6.1" __version__ = "0.7"