diff --git a/docs/changelog.rst b/docs/changelog.rst index ef366d4..4c98807 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,8 +1,8 @@ Changelog ========= -Changes in git --------------- +Version 0.9.1 (2016-02-18) +-------------------------- * Fixed support for ``PolymorphicManager.from_queryset()`` for custom query sets. * Fixed Django 1.7 ``changeform_view()`` redirection to the child admin site. diff --git a/docs/conf.py b/docs/conf.py index d95954a..44d4463 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' +version = '0.9.1' # The full version, including alpha/beta/rc tags. -release = '0.9' +release = '0.9.1' # 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 0ead5d8..73822aa 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" +__version__ = "0.9.1" # Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.