mirror of
https://github.com/jazzband/django-defender.git
synced 2026-05-14 10:33:14 +00:00
Added changes for release 0.7.0
This commit is contained in:
parent
6756a87f77
commit
8daa2d168d
2 changed files with 5 additions and 4 deletions
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue