diff --git a/CHANGES.txt b/CHANGES.txt index b881388..9fba9ed 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,23 @@ Changes ======= +4.0.2 (2018-01-19) +------------------ + +- Improve Windows compatibility on Python < 3.4 by utilizing win_inet_pton + [hsiaoyi0504] + +- Add documentation on django-allauth integration + [grucha] + +- Add documentation on known AccessAttempt caching configuration problems + when using axes with the `django.core.cache.backends.locmem.LocMemCache` + [aleksihakli] + +- Refactor and improve existing AccessAttempt cache reset utility + [aleksihakli] + + 4.0.1 (2017-12-19) ------------------ diff --git a/axes/__init__.py b/axes/__init__.py index 74f9c4c..1369212 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -__version__ = '4.0.1' +__version__ = '4.0.2' default_app_config = 'axes.apps.AppConfig'