------------------
- General code cleanup to keep compatibility with the latest Django
(currently 1.8 upwards) as well as Python3. Introduced full testsuite.
- *Backwards incompatible*: The attachment views now use a urlpattern
``namespace`` so you need to adjust the urlpattern::
url(r'^attachments/', include('attachments.urls', namespace='attachments')),
- *Backwards incompatible*: The quotes around the ``as`` variable name
must be removed::
{% get_attachments_for entry as "my_entry_attachments" %}
becomes
{% get_attachments_for entry as my_entry_attachments %}
- *Possibly backwards incompatible*: The old version had bugs around
permissions and were not enforcing it in all places. From now on the
related permissions ``add_attachment`` and ``delete_attachment`` must
been applied to all related users.