Added changes for release 0.7.0

This commit is contained in:
Ken Cochrane 2020-02-23 14:59:36 -05:00 committed by Ken Cochrane
parent 6756a87f77
commit 8daa2d168d
2 changed files with 5 additions and 4 deletions

View file

@ -3,9 +3,10 @@ Changes
=======
WIP
---
0.7.0
-----
- Add support for Django 3.0 [@deeprave]
- Remove support from deprecated Python 3.4 and Django 2.0. [@aleksihakli]
- Add Read the Docs documentation. [@aleksihakli]
- Add support for Python 3.7, Python 3.8, PyPy3. [@aleksihakli]

View file

@ -1,3 +1,3 @@
from pkg_resources import get_distribution
VERSION = (0, 7, 0)
__version__ = get_distribution("django-defender").version
__version__ = ".".join((map(str, VERSION)))