From f31a5227f5878a4339083eb82e8080a3210231bb Mon Sep 17 00:00:00 2001 From: Josh VanderLinden Date: Mon, 11 Jun 2012 08:47:05 -0600 Subject: [PATCH] Apparently 1.2.4-rc1 was already pushed to PyPI a while ago :) --- README.rst | 2 +- axes/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 93fa04c..bb8f193 100644 --- a/README.rst +++ b/README.rst @@ -142,7 +142,7 @@ By default, django-axes will lock out repeated attempts from the same IP address. You can allow this IP to attempt again by deleting the relevant ``AccessAttempt`` records in the admin. -You can also use the ``axes_reset`` management command (since 1.2.4-rc1). Using Django's +You can also use the ``axes_reset`` management command (since 1.2.5-rc1). Using Django's ``manage.py``. * ``manage.py axes_reset`` will reset all lockouts and access records. diff --git a/axes/__init__.py b/axes/__init__.py index 25823a3..334e3f3 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -2,7 +2,7 @@ import logging import os from django.conf import settings -VERSION = (1, 2, 4, 'rc1') +VERSION = (1, 2, 5, 'rc1') def get_version():