Bump version to 0.7.2 to release a few minor bugfixes
parent
2ffbd51844
commit
ce4b9348ec
|
|
@ -1,7 +1,17 @@
|
|||
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.
|
||||
|
|
|
|||
|
|
@ -54,9 +54,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.7'
|
||||
version = '0.7.2'
|
||||
# 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
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
"""
|
||||
See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
|
||||
"""
|
||||
__version__ = "0.7.1"
|
||||
__version__ = "0.7.2"
|
||||
|
|
|
|||
Loading…
Reference in New Issue