diff --git a/CHANGES.rst b/CHANGES.rst index 64ee410..6d19b3c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,18 @@ 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 ===== diff --git a/defender/__init__.py b/defender/__init__.py index d6aefa1..19798df 100644 --- a/defender/__init__.py +++ b/defender/__init__.py @@ -1,3 +1,3 @@ -VERSION = (0, 9, 7) +VERSION = (0, 9, 8) __version__ = ".".join((map(str, VERSION)))