Bump to 1.0b1
parent
22cef13f69
commit
4a60c1fb60
|
|
@ -1,15 +1,27 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
Changes in git
|
||||
--------------
|
||||
Version 1.0b1 (2016-08-10)
|
||||
--------------------------
|
||||
|
||||
* Added admin inline support for polymorphic models.
|
||||
* Added formset support for polymorphic models.
|
||||
* Added support for polymorphic queryset limiting effects on proxy models.
|
||||
* Added support for multiple databases with ``.using()`` method and ``using=..`` keyword argument.
|
||||
* Added Django 1.10 support.
|
||||
* Added **admin inline** support for polymorphic models.
|
||||
* Added **formset** support for polymorphic models.
|
||||
* 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.
|
||||
|
||||
.. 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)
|
||||
--------------------------
|
||||
|
|
|
|||
|
|
@ -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.2'
|
||||
version = '1.0'
|
||||
# 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
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -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.2"
|
||||
__version__ = "1.0b1"
|
||||
|
||||
|
||||
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -54,7 +54,10 @@ setup(
|
|||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.2',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 1.4',
|
||||
'Framework :: Django :: 1.5',
|
||||
|
|
|
|||
Loading…
Reference in New Issue