From 388d0e12c04f29578e4492ddb3507b1b7eee8431 Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Fri, 3 Nov 2017 23:46:33 +0000 Subject: [PATCH] Update docs to reflect supported django versions --- README.rst | 4 ++-- docs/quickstart.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 5b67d04..3d96553 100644 --- a/README.rst +++ b/README.rst @@ -60,8 +60,8 @@ 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*. +The current release of *django-polymorphic* supports Django 1.11, 2.0 and Python 2.7 and 3.4+ is supported. +For older Django versions, install *django-polymorphic==1.3*. For more information, see the `documentation at Read the Docs `_. diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 3df803f..91ca7b3 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -12,8 +12,8 @@ Update the settings file:: 'django.contrib.contenttypes', ) -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*. +The current release of *django-polymorphic* supports Django 1.11, 2.0 and Python 2.7 and 3.4+ is supported. +For older Django versions, use *django-polymorphic==1.3*. Making Your Models Polymorphic ------------------------------