From bb33a0c5da91bd1424360ff0d391fbff7087f323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20Ha=CC=88kli?= Date: Tue, 9 Jul 2019 14:57:00 +0200 Subject: [PATCH] Version 5.0.8 --- CHANGES.rst | 12 +++++++++--- axes/__init__.py | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) 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'