Bump to 1.0b1

fix_request_path_info
Diederik van der Boor 2016-08-15 11:22:45 +02:00
parent 22cef13f69
commit 4a60c1fb60
4 changed files with 24 additions and 9 deletions

View File

@ -1,15 +1,27 @@
Changelog Changelog
========= =========
Changes in git Version 1.0b1 (2016-08-10)
-------------- --------------------------
* Added admin inline support for polymorphic models. * Added Django 1.10 support.
* Added formset support for polymorphic models. * Added **admin inline** support for polymorphic models.
* Added support for polymorphic queryset limiting effects on proxy models. * Added **formset** support for polymorphic models.
* Added support for multiple databases with ``.using()`` method and ``using=..`` keyword argument. * Added support for polymorphic queryset limiting effects on *proxy models*.
* Added support for multiple databases with the ``.using()`` method and ``using=..`` keyword argument.
* Fixed modifying passed ``Q()`` objects in place. * Fixed modifying passed ``Q()`` objects in place.
.. note::
This version provides a new method for registering the admin models.
While the old method is still supported, we recommend to upgrade your code.
The new registration style improves the compatibility in the Django admin.
* Register each ``PolymorphicChildModelAdmin`` with the admin site too.
* The ``child_models`` attribute of the ``PolymorphicParentModelAdmin`` should be a flat list of all child models.
The ``(model, admin)`` tuple is obsolete.
Also note that proxy models will now limit the queryset too.
Version 0.9.2 (2016-05-04) Version 0.9.2 (2016-05-04)
-------------------------- --------------------------

View File

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

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. Please see LICENSE and AUTHORS for more information.
""" """
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/) # See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
__version__ = "0.9.2" __version__ = "1.0b1"
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models. # Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.

View File

@ -54,7 +54,10 @@ setup(
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django', 'Framework :: Django',
'Framework :: Django :: 1.4', 'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5', 'Framework :: Django :: 1.5',