diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 27d2e4b..e1670d4 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,6 +1,16 @@ Changelog ========= +1.2.0 +~~~~~ +* Verified compatibility with python 3.5 and pypy3 +* Verified compatibility with Django 1.8 +* Dropped support for python 3.2 +* Better support for custom User models. + See `#4 `_. +* Added a ``SudoMixin`` for use with class based views. + See `#5 `_. + 1.1.3 ~~~~~ * Use ``constant_time_compare`` when verifying the correct sudo token. diff --git a/setup.py b/setup.py index 4c58c35..6353823 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def run_tests(self): setup( name='django-sudo', - version='1.1.3', + version='1.2.0', author='Matt Robenolt', author_email='matt@ydekproductions.com', url='https://github.com/mattrobenolt/django-sudo',