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

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