From 9fad4443cf7287411fd7a09194fb907a6ae8576a Mon Sep 17 00:00:00 2001 From: johnthagen Date: Fri, 10 Dec 2021 08:22:16 -0500 Subject: [PATCH] Release 2.0.0 (#112) --- CHANGES | 9 +++++++++ solo/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index ee0c13f..7a785dc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +django-solo-2.0.0 +================= + +Date: 10 December, 2021 + +* Add support for Django 4.0 +* Drop support for end of life Django versions (only 2.2, 3.2, and 4.0 are supported). +* Add GitHub Actions CI and tox + django-solo-1.2.0 ================= diff --git a/solo/__init__.py b/solo/__init__.py index 870356c..534415a 100644 --- a/solo/__init__.py +++ b/solo/__init__.py @@ -3,7 +3,7 @@ import django -__version__ = '1.2.0' +__version__ = '2.0.0' if django.VERSION < (3, 2): default_app_config = 'solo.apps.SoloAppConfig'