diff --git a/CHANGES.rst b/CHANGES.rst index 52b11f4..19d8474 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,12 +2,18 @@ Changes ======= -Pending -------- -- Stop axes.W003 check from being triggered for subclasses of ``AxesBackend``. +5.0.8 (2019-07-09) +------------------ + +- Add ``AXES_ONLY_ADMIN_SITE`` flag for only running Axes on admin site. + [hramezani] +- Add ``axes_reset_logs`` command for removing old AccessLog records. + [tlebrize] +- Allow ``AxesBackend`` subclasses to pass the ``axes.W003`` system check. [adamchainz] + 5.0.7 (2019-06-14) ------------------ diff --git a/axes/__init__.py b/axes/__init__.py index 39c88f5..b3e26a5 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.0.7' +__version__ = '5.0.8' default_app_config = 'axes.apps.AppConfig'