Bump to v1.0.2

fix_request_path_info
Diederik van der Boor 2016-10-14 11:32:44 +02:00
parent 58f89efa5d
commit 186f9548b1
4 changed files with 9 additions and 7 deletions

View File

@ -1,8 +1,8 @@
Changelog
=========
Changes in git
--------------
Version 1.0.2 (2016-10-14)
--------------------------
* Added helper function for django-guardian_; add
``GUARDIAN_GET_CONTENT_TYPE = 'polymorphic.contrib.guardian.get_polymorphic_base_content_type'``

View File

@ -55,9 +55,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.0.2'
# The full version, including alpha/beta/rc tags.
release = '1.0'
release = '1.0.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -100,8 +100,10 @@ the view of the actual child model is used, similar to the way the regular chang
django-guardian support
-----------------------
You can enable django-guardian_ to use the base model for object level permissions by adding this option to your
settings:
.. versionadded:: 1.0.2
You can configure django-guardian_ to use the base model for object level permissions.
Add this option to your settings:
.. code-block:: python

View File

@ -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__ = "1.0.1"
__version__ = "1.0.2"
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.