aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
-rw-r--r--docs/installation.rst6
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index f4b07b5..9b2525e 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -59,7 +59,7 @@ copyright = u'2013, Django Debug Toolbar developers and contributors'
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
-release = '1.0'
+release = '1.0.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/docs/installation.rst b/docs/installation.rst
index f761e91..70ca46e 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -23,12 +23,16 @@ Quick setup
Make sure that ``'django.contrib.staticfiles'`` is `set up properly
<https://docs.djangoproject.com/en/stable/howto/static-files/>`_ and add
-``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
+``'debug_toolbar.apps.DebugToolbarConfig'`` (Django ≥ 1.7) or
+``'debug_toolbar'`` (Django < 1.7) to your ``INSTALLED_APPS`` setting::
INSTALLED_APPS = (
# ...
'django.contrib.staticfiles',
# ...
+ # If you're using Django 1.7.x or later
+ 'debug_toolbar.apps.DebugToolbarConfig',
+ # If you're using Django 1.6.x or earlier
'debug_toolbar',
)