diff --git a/CHANGES.rst b/CHANGES.rst index a7eafa7..a6a4990 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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] diff --git a/defender/__init__.py b/defender/__init__.py index d569749..57c5487 100644 --- a/defender/__init__.py +++ b/defender/__init__.py @@ -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)))