Skip to content

Commit

Permalink
Release 0.5.0 (#88)
Browse files Browse the repository at this point in the history
Signed-off-by: Ken Cochrane <kencochrane@gmail.com>
  • Loading branch information
kencochrane committed Jun 29, 2017
1 parent 4d9adc3 commit fc9d51e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
9 changes: 9 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.5.0
=====
- Better support for Django 1.11 [@dukebody]
- Added support to share redis config with django.core.cache [@Franr]
- Allow decoration of functions beyond the admin login [@MattBlack85]
- Doc improvements [@dukebody]
- Allow usernames with plus signs in unblock view [@dukebody]
- Code cleanup [@KenCochrane]

0.4.3
=====
- Flex version requirements for dependencies
Expand Down
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,20 @@ Build status

Sites using Defender:
=====================
If you are using defender on your site, submit a PR to add to the list.

- https://hub.docker.com


Versions
========
- 0.5.0
- Better support for Django 1.11 [@dukebody]
- Added support to share redis config with django.core.cache [@Franr]
- Allow decoration of functions beyond the admin login [@MattBlack85]
- Doc improvements [@dukebody]
- Allow usernames with plus signs in unblock view [@dukebody]
- Code cleanup [@KenCochrane]
- 0.4.3 - Better Support for Django 1.10
- 0.4.2 - Better support for Django 1.9
- 0.4.1 - minor refactor to make it easier to retrieve username.
Expand Down Expand Up @@ -153,7 +162,7 @@ requirements

- django: 1.8.x, 1.9.x, 1.10.x, 1.11.x
- redis
- python: 2.6.x, 2.7.x, 3.3.x, 3.4.x, 3.5.x, 3.6.x, PyPy
- python: 2.7.x, 3.3.x, 3.4.x, 3.5.x, 3.6.x, PyPy

How it works
============
Expand Down Expand Up @@ -286,21 +295,10 @@ Database tables:
You will need to create tables in your database that are necessary
for operation.

If you're using Django 1.7.x:
```bash
python manage.py migrate defender
```

On versions of Django prior to 1.7, you might use South (version >= 1.0).
```bash
python manage.py migrate defender
```

If you're not using South, a normal syncdb will work:
```bash
python manage.py syncdb
```

Customizing Defender
--------------------

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from distutils.core import setup


version = '0.4.3'
version = '0.5.0'


def get_packages(package):
Expand Down Expand Up @@ -50,7 +50,6 @@ def get_package_data(package):
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit fc9d51e

Please sign in to comment.