Bump to v1.3 - note: support for old Django versions dropped!
parent
342780300f
commit
1ce58a0b54
|
|
@ -60,6 +60,9 @@ Django to perform an ``INNER JOIN`` to fetch the model fields from the database.
|
|||
While taking this in mind, there are valid reasons for using subclassed models.
|
||||
That's what this library is designed for!
|
||||
|
||||
The current release of *django-polymorphic* supports Django 1.8, 1.10, 1.11 and Python 2.7 and 3.4+ is supported.
|
||||
For older Django versions, install *django-polymorphic==1.2*.
|
||||
|
||||
For more information, see the `documentation at Read the Docs <https://django-polymorphic.readthedocs.io/>`_.
|
||||
|
||||
Installation
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
Changes in git
|
||||
--------------
|
||||
Version 1.3 (2017-08-01)
|
||||
------------------------
|
||||
|
||||
* **BACKWARDS INCOMPATIBILITY:** Dropped Django 1.4, 1.5, 1.6, 1.7, 1.9 and Python 2.6 support.
|
||||
Only official Django releases (1.8, 1.10, 1.11) are supported now.
|
||||
* Allow expressions to pass unchanged in ``.order_by()``
|
||||
* Fixed Django 1.11 accessor checks (to support subclasses of ``ForwardManyToOneDescriptor``, like ``ForwardOneToOneDescriptor``)
|
||||
* Fixed polib syntax error messages in translations.
|
||||
* Dropped Django 1.4, 1.5, 1.6, 1.7, 1.9 and Python 2.6 support.
|
||||
Only official Django releases (1.8, 1.10, 1.11) are supported now.
|
||||
|
||||
|
||||
Version 1.2 (2017-05-01)
|
||||
|
|
|
|||
|
|
@ -61,9 +61,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.2'
|
||||
version = '1.3'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.2'
|
||||
release = '1.3'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,8 @@ Update the settings file::
|
|||
'django.contrib.contenttypes',
|
||||
)
|
||||
|
||||
The current release of *django-polymorphic* supports Django 1.4 till 1.10 and Python 3 is supported.
|
||||
The current release of *django-polymorphic* supports Django 1.8, 1.10, 1.11 and Python 2.7 and 3.4+ is supported.
|
||||
For older Django versions, use *django-polymorphic==1.2*.
|
||||
|
||||
Making Your Models Polymorphic
|
||||
------------------------------
|
||||
|
|
|
|||
|
|
@ -8,4 +8,4 @@ Please see LICENSE and AUTHORS for more information.
|
|||
"""
|
||||
|
||||
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
|
||||
__version__ = "1.2"
|
||||
__version__ = "1.3"
|
||||
|
|
|
|||
Loading…
Reference in New Issue