diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4262217..4046146 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Changelog ========= + +`1.4.0`_ - 2021-01-16 +--------------------- + +**Features** +* Added support for enterprice app SSO certificates #87 +* Added setting to disable user creation #96 + +**Fixed** +* Dependency compatibility for PyJWT 2.0 #120 +* Django 4.0 deprecation cleanup # +* Fixed a bug where IntegrityError could occur if a users groups changed, and multiple requests were done quickly. #95 + + `1.3.1`_ - 2019-11-06 --------------------- diff --git a/django_auth_adfs/__init__.py b/django_auth_adfs/__init__.py index 15a71f1..5cc18b9 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.3.1' +__version__ = '1.4.0' diff --git a/pyproject.toml b/pyproject.toml index b5dbf2e..0c0177b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = 'django-auth-adfs' -version = '1.3.1' # Remember to also change __init__.py version +version = '1.4.0' # 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 ']