Skip to content

Commit

Permalink
bump version to 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kencochrane committed Nov 29, 2022
1 parent 73d442e commit ac36751
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 isn’t 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):
Expand Down
2 changes: 1 addition & 1 deletion defender/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 9, 4)
VERSION = (0, 9, 6)

__version__ = ".".join((map(str, VERSION)))

0 comments on commit ac36751

Please sign in to comment.