From ce4b9348ec55077a193706516362d47da4de7e33 Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Thu, 1 Oct 2015 13:29:56 +0200 Subject: [PATCH] Bump version to 0.7.2 to release a few minor bugfixes --- docs/changelog.rst | 12 +++++++++++- docs/conf.py | 4 ++-- polymorphic/__version__.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index e67f2ea..cb657f3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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. diff --git a/docs/conf.py b/docs/conf.py index 0103ca2..da84e0f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/polymorphic/__version__.py b/polymorphic/__version__.py index d9c80ff..32f061a 100644 --- a/polymorphic/__version__.py +++ b/polymorphic/__version__.py @@ -2,4 +2,4 @@ """ See PEP 440 (https://www.python.org/dev/peps/pep-0440/) """ -__version__ = "0.7.1" +__version__ = "0.7.2"