diff --git a/CHANGES b/CHANGES index 23cad03..253e768 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,12 @@ Version History =============== + +Version 0.5.20 +-------------- +* Still support Django 3.2 (#222, thanks @petrklus) + + Version 0.5.19 -------------- * SECURITY ISSUE: reset the random seed after an image was generated (#221, thanks @ibuler) diff --git a/captcha/__init__.py b/captcha/__init__.py index 029e113..0b61231 100644 --- a/captcha/__init__.py +++ b/captcha/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 5, 19) +VERSION = (0, 5, 20) def get_version(): diff --git a/docs/conf.py b/docs/conf.py index aa4da5c..8c9c5b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ # built documents. # # The short X.Y version. -version = "0.5.19" +version = "0.5.20" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 6b1975a..9299747 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def run_tests(self): install_requires = [ - "Django >= 4.2", + "Django >= 3.2", "Pillow >=6.2.0", "django-ranged-response == 0.2.0", ]