From dc06ec776ea19f2edead28a241c3303bd6fad25b Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Tue, 20 Feb 2018 10:56:06 +0000 Subject: [PATCH] Updated for 0.2.0 --- CHANGES.rst | 20 ++++++++++++++++++++ django_encrypted_filefield/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGES.rst diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000..c52f5c4 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,20 @@ +Changelog +######### + +0.2.0 +===== + +* Updated to play nice with Django 2.0 thanks to pull-request `#9`_ from + `spaceriqui`_. +* At this stage Only Django 1.11+ will be supported, though it may still work + with older versions as far back as 1.8. + +0.1.0 +===== + +* Initial release + +.. _spacerqui: https://github.com/spaceriqui + +.. _#9: https://github.com/danielquinn/django-encrypted-filefield/pull/9 + diff --git a/django_encrypted_filefield/__init__.py b/django_encrypted_filefield/__init__.py index e9621bc..46e3daa 100644 --- a/django_encrypted_filefield/__init__.py +++ b/django_encrypted_filefield/__init__.py @@ -1,3 +1,3 @@ from .checks import constants_check, fetch_url_check -__version__ = (0, 1, 3) +__version__ = (0, 2, 0)