Bump 0.9.8

This commit is contained in:
Ken Cochrane 2024-02-15 16:40:06 -05:00
parent 07555abd29
commit 83ad7ce338
2 changed files with 13 additions and 1 deletions

View file

@ -2,6 +2,18 @@
Changes Changes
======= =======
0.9.8
=====
- Fix watch_login with custom username (#228) [@ron8mcr]
- Replace datetime.now with timezone.now (#232) [@ericls]
- Update tox.ini with Django 4.2, Python 3.11 (#233) [@marius-mather]
- Use redis parse_url method instead of a custom one (#234) [@dkr-sahar]
- Update DEFENDER_REDIS_NAME documentation (#235) [@bennylope]
- Prevent the "Reverse for 'defender_blocks_view' not found" error (#237) [@ataylor32]
- Updated app_index.html (#238) [@ataylor32]
- Improved the "Blocked Logins" page's admin integration (#239) [@ataylor32]
0.9.7 0.9.7
===== =====

View file

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