diff --git a/README.rst b/README.rst index a47dc72..5b67d04 100644 --- a/README.rst +++ b/README.rst @@ -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 `_. Installation diff --git a/docs/changelog.rst b/docs/changelog.rst index 8c5d216..0236d66 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) diff --git a/docs/conf.py b/docs/conf.py index 88e93c2..b9b053f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 254918a..3df803f 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -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 ------------------------------ diff --git a/polymorphic/__init__.py b/polymorphic/__init__.py index 4b64b0d..77d7fe2 100644 --- a/polymorphic/__init__.py +++ b/polymorphic/__init__.py @@ -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"