Bump version to 0.7.2 to release a few minor bugfixes

fix_request_path_info
Diederik van der Boor 2015-10-01 13:29:56 +02:00
parent 2ffbd51844
commit ce4b9348ec
3 changed files with 14 additions and 4 deletions

View File

@ -1,7 +1,17 @@
Changelog Changelog
========== ==========
Version 0.7.1 (2015-04/30) Version 0.7.2 (2015-10-01)
--------------------------
* Added ``queryset.as_manager()`` support for Django 1.7/1.8
* Optimize model access for non-dumpdata usage; avoid ``__getattribute__()`` call each time to access the manager.
* Fixed 500 error when using invalid PK's in the admin URL, return 404 instead.
* Fixed possible issues when using an custom ``AdminSite`` class for the parent object.
* Fixed Pickle exception when polymorphic model is cached.
Version 0.7.1 (2015-04-30)
-------------------------- --------------------------
* Fixed Django 1.8 support for related field widgets. * Fixed Django 1.8 support for related field widgets.

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.7' version = '0.7.2'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.7' release = '0.7.2'
# 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

@ -2,4 +2,4 @@
""" """
See PEP 440 (https://www.python.org/dev/peps/pep-0440/) See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
""" """
__version__ = "0.7.1" __version__ = "0.7.2"