-------------------
Features
~~~~~~~~
- Add helper function to email the user's login link to them. [Stavros
Korokithakis]
Fixes
~~~~~
- Add app_name for Django 2.0. [Stavros Korokithakis]
- Django 2 compatibility. [Stavros Korokithakis]
Merge pull request 1 from sirodoht/django-2
- Tokenauth template should be given a string, not a bytestring.
[Theodore Keloglou]
As of Django 2.0 Signer.sign returns a bytestring if given one.
We want to pass a utf8 string to our template, thus we need to
decode it after base64-encoding it.
- Is_authenticated is now only an attribute. [Theodore Keloglou]
As of Django 1.10 is_authenticated became an attribute rather
than a function and the deprecation period lasted until Django 2.0,
which left is_authenticated only as a boolean variable.
Documentation
~~~~~~~~~~~~~
- Add settings section to the documentation. [Stavros Korokithakis]