From ae9c5789f4e92a587556d6f44f6e5f19af146a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Kr=C3=BCger=20Svensson?= Date: Sat, 16 Jan 2021 13:33:08 +0100 Subject: [PATCH] Bumps version to 1.4.0 --- CHANGELOG.rst | 14 ++++++++++++++ django_auth_adfs/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) 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 ']