bump version to 0.9.6

This commit is contained in:
Ken Cochrane 2022-11-29 08:21:40 -05:00
parent 73d442e31b
commit ac36751561
3 changed files with 5 additions and 2 deletions

View file

@ -2,6 +2,9 @@
Changes
=======
0.9.6
=====
- Confirm support for Django 4.1
- Add ``DEFENDER_ATTEMPT_COOLOFF_TIME`` config to override ``DEFENDER_COOLOFF_TIME`` specifically for attempt lifespan [@djmore4]
- Add ``DEFENDER_LOCKOUT_COOLOFF_TIME`` config to override ``DEFENDER_COOLOFF_TIME`` specifically for lockout duration [@djmore4]

View file

@ -729,7 +729,7 @@ The views block based on email address submitted on the password reset view. Thi
def post(self, request, *args, **kwargs):
"""
Confirm the user isnt already blocked by IP before allowing form POST.
Also, force log this form POST as a single entry in the Defender cache, against the submitted email address.
"""
if def_utils.is_already_locked(request):

View file

@ -1,3 +1,3 @@
VERSION = (0, 9, 4)
VERSION = (0, 9, 6)
__version__ = ".".join((map(str, VERSION)))