Bump to v1.2 for Django 1.11 support

fix_request_path_info
Diederik van der Boor 2017-05-01 12:35:47 +02:00
parent 9c618d8b21
commit 21d41100df
3 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,16 @@
Changelog
=========
Version 1.2 (2017-05-01)
------------------------
* Django 1.11 support.
* Fixed ``PolymorphicInlineModelAdmin`` to explictly exclude ``polymorphic_ctype``.
* Fixed Python 3 TypeError in the admin when preserving the query string.
* Fixed Python 3 issue due to ``force_unicode()`` usage instead of ``force_text()``.
* Fixed ``z-index`` attribute for admin menu appearance.
Version 1.1 (2017-02-03)
------------------------

View File

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

View File

@ -9,7 +9,7 @@ Please see LICENSE and AUTHORS for more information.
import django
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
__version__ = "1.1"
__version__ = "1.2"
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.