From bc8672cb6994751d5c4034904d918b9cbc261ab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20H=C3=A4kli?= Date: Fri, 19 Jan 2018 17:33:56 +0200 Subject: [PATCH] Bump version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aleksi Häkli --- CHANGES.txt | 17 +++++++++++++++++ axes/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) 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'