Released version 0.5.2

Signed-off-by: Ken Cochrane <KenCochrane@gmail.com>
This commit is contained in:
Ken Cochrane 2018-02-19 09:50:59 -05:00
parent dff964c226
commit 46ff44bd87
4 changed files with 16 additions and 3 deletions

1
.gitignore vendored
View file

@ -21,6 +21,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template

10
CHANGES
View file

@ -1,6 +1,12 @@
0.5.2
====
* Fix regex in 'unblock_username_view' to handle special symbols [@ruthus18]
=====
- Fix regex in 'unblock_username_view' to handle special symbols [@ruthus18]
- Fix django requires version for 1.11.x [@kencochrane]
- remove hiredis dependency [@ericbuckley]
- Correctly get raw client when using django_redis cache. [@cburger]
- replace django.core.urlresolvers with django.urls For Django 2.0 [@s-wirth]
- add username kwarg for providing username directly rather than via callback arg [@williamboman]
- Only use the username if it is actually provided [@cobusc]
0.5.1
=====

View file

@ -24,6 +24,7 @@ If you are using defender on your site, submit a PR to add to the list.
Versions
========
-
- 0.5.1
- Middleware fix for django >= 1.10 #93 [@Temeez]
- Force the username to lowercase #90 [@MattBlack85]
@ -445,3 +446,8 @@ With Code coverage:
```
PYTHONPATH=$PYTHONPATH:$PWD coverage run --source=defender $(which django-admin.py) test defender --settings=defender.test_settings
```
How to release
==============
1. python setup.py sdist
2. twine upload dist/*

View file

@ -9,7 +9,7 @@ except ImportError:
from distutils.core import setup
version = '0.5.1'
version = '0.5.2'
def get_packages(package):