Skip to content

Commit

Permalink
v0.5.20 still supports Django 3.2. Fixes #222
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi committed Oct 3, 2023
1 parent cd1ca4e commit 9afa5d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion captcha/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 5, 19)
VERSION = (0, 5, 20)


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down

0 comments on commit 9afa5d4

Please sign in to comment.