From 530fde694f9967169b5f7fdaf66f3880f8902185 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Fri, 31 Jan 2020 10:29:32 -0600 Subject: [PATCH] Bump to version 2.2 --- README.rst | 2 +- docs/changes.rst | 5 +++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index d4ff773d2..0595d47bc 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Here's a screenshot of the toolbar in action: In addition to the built-in panels, a number of third-party panels are contributed by the community. -The current stable version of the Debug Toolbar is 2.1. It works on +The current stable version of the Debug Toolbar is 2.2. It works on Django ≥ 1.11. Documentation, including installation and configuration instructions, is diff --git a/docs/changes.rst b/docs/changes.rst index 3ec643680..bf4d555e1 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,9 +4,14 @@ Change log UNRELEASED ---------- + +2.2 (2020-01-31) +---------------- + * Removed support for end of life Django 2.0 and 2.1. * Added support for Python 3.8. * Add locals() option for sql panel. +* Added support for Django 3.0 2.1 (2019-11-12) ---------------- diff --git a/docs/conf.py b/docs/conf.py index 4c93d3065..c93c3947b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '2.1' +version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.1' +release = '2.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 4ddde5a5f..a63a108fd 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readall(path): setup( name="django-debug-toolbar", - version="2.1", + version="2.2", description="A configurable set of panels that display various debug " "information about the current request/response.", long_description=readall("README.rst"),