From 75646f1f2499b5f5719af14840bf31383814446e Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Wed, 4 May 2016 11:29:48 +0200 Subject: [PATCH] Bump to 0.9.2 --- docs/changelog.rst | 7 +++++++ docs/conf.py | 4 ++-- polymorphic/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 4c98807..6053688 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +Version 0.9.2 (2016-05-04) +-------------------------- + +* Fix error when using ``date_hierarchy`` field in the admin +* Fixed Django 1.10 warning in admin add-type view. + + Version 0.9.1 (2016-02-18) -------------------------- diff --git a/docs/conf.py b/docs/conf.py index 44d4463..7f84262 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor' # built documents. # # The short X.Y version. -version = '0.9.1' +version = '0.9.2' # The full version, including alpha/beta/rc tags. -release = '0.9.1' +release = '0.9.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/polymorphic/__init__.py b/polymorphic/__init__.py index 73822aa..e74c4b3 100644 --- a/polymorphic/__init__.py +++ b/polymorphic/__init__.py @@ -7,7 +7,7 @@ This code and affiliated files are (C) by Bert Constantin and individual contrib Please see LICENSE and AUTHORS for more information. """ # See PEP 440 (https://www.python.org/dev/peps/pep-0440/) -__version__ = "0.9.1" +__version__ = "0.9.2" # Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.