diff --git a/CHANGES.rst b/CHANGES.rst index 3bd63b3b..b0d048a5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,12 +2,24 @@ Changes ======= + +5.0.2 (2019-05-03) +------------------ + +- Add ``AXES_ENABLED`` setting for disabling Axes with e.g. tests + that use Django test client ``login``, ``logout``, and ``force_login`` + methods, which do not supply the ``request`` argument to views, + preventing Axes from functioning correctly in certain test setups. + [aleksihakli] + + 5.0.1 (2019-05-03) ------------------ - Add changelog to documentation. [aleksihakli] + 5.0 (2019-05-01) ---------------- diff --git a/axes/__init__.py b/axes/__init__.py index 161a584c..5eea5c6c 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.0.1' +__version__ = '5.0.2' default_app_config = 'axes.apps.AppConfig'