diff --git a/CHANGES.txt b/CHANGES.txt index b2f82a9..f6e5ba8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,20 @@ Changes ======= -2.2.1 (2016-09-26) +2.3.0 (2016-11-04) ------------------ +- Fixed ``axes_reset`` management command to skip "ip" prefix to command + arguments. + [EvaMarques] + +- Added ``axes_reset_user`` management command to reset lockouts and failed + login records for given users. + [vladimirnani] + +- Fixed Travis-PyPI release configuration. + [jezdez] + - Make IP position argument optional. [aredalen] diff --git a/axes/__init__.py b/axes/__init__.py index 833bae8..18f5fed 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.2.1' +__version__ = '2.3.0' default_app_config = 'axes.apps.AppConfig'