diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f075fe..66f7ccd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========= + +`1.6.1`_ - 2021-03-25 +--------------------- + +**Fixes** + +* Raise PermissionDenied when token is lacking information needed to create a user. #116 #149 +* Documentation error for ``JWT_LEEWAY``. #147 + + `1.6.0`_ - 2021-01-25 --------------------- @@ -227,6 +237,7 @@ Changelog * Initial release +.. _1.6.1: https://github.com/snok/django-auth-adfs/compare/1.6.0...1.6.1 .. _1.6.0: https://github.com/snok/django-auth-adfs/compare/1.5.0...1.6.0 .. _1.5.0: https://github.com/jobec/django-auth-adfs/compare/1.4.1...1.5.0 .. _1.4.1: https://github.com/jobec/django-auth-adfs/compare/1.4.0...1.4.1 diff --git a/django_auth_adfs/__init__.py b/django_auth_adfs/__init__.py index c761055..c37bc1b 100644 --- a/django_auth_adfs/__init__.py +++ b/django_auth_adfs/__init__.py @@ -4,4 +4,4 @@ Adding imports here will break setup.py """ -__version__ = '1.6.0' +__version__ = '1.6.1' diff --git a/pyproject.toml b/pyproject.toml index 19ca328..dd83bd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = 'django-auth-adfs' -version = '1.6.0' # Remember to also change __init__.py version +version = '1.6.1' # Remember to also change __init__.py version description = 'A Django authentication backend for Microsoft ADFS and AzureAD' authors = ['Joris Beckers '] maintainers = ['Jonas Krüger Svensson ', 'Sondre Lillebø Gundersen ']