Apparently 1.2.4-rc1 was already pushed to PyPI a while ago :)

This commit is contained in:
Josh VanderLinden 2012-06-11 08:47:05 -06:00
parent c3f0b3c188
commit f31a5227f5
2 changed files with 2 additions and 2 deletions

View file

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

View file

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