Version 5.0.2

This commit is contained in:
Aleksi Häkli 2019-05-07 23:42:07 +03:00
parent 816676f68d
commit eebf0736e2
No known key found for this signature in database
GPG key ID: 3E7146964D726BBE
2 changed files with 13 additions and 1 deletions

View file

@ -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)
----------------

View file

@ -1,4 +1,4 @@
__version__ = '5.0.1'
__version__ = '5.0.2'
default_app_config = 'axes.apps.AppConfig'