diff --git a/ChangeLog.rst b/ChangeLog.rst index 1e66016eff..020abaed3e 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,9 @@ -65.0.0 (unreleased) +65.0.0 (2024-09-22) ******************* +Note worthy changes +------------------- + - Added transparent support for Django's ``LoginRequiredMiddleware`` (new since Django 5.1). @@ -24,7 +27,6 @@ Backwards incompatible changes login stages you will have to adjust the cancel link into a logout POST. - 64.2.1 (2024-09-05) ******************* diff --git a/allauth/__init__.py b/allauth/__init__.py index 3a082e4cfe..c594d3493b 100644 --- a/allauth/__init__.py +++ b/allauth/__init__.py @@ -8,7 +8,7 @@ """ -VERSION = (64, 3, 0, "dev", 0) +VERSION = (65, 0, 0, "final", 0) __title__ = "django-allauth" __version_info__ = VERSION diff --git a/examples/react-spa/backend/requirements.txt b/examples/react-spa/backend/requirements.txt index 12ff74d820..5d4ff3c075 100644 --- a/examples/react-spa/backend/requirements.txt +++ b/examples/react-spa/backend/requirements.txt @@ -1,2 +1,2 @@ -django-allauth[mfa,socialaccount]>=64.2.1 +django-allauth[mfa,socialaccount]>=65.0.0 qrcode >= 7.0.0 diff --git a/examples/regular-django/requirements.txt b/examples/regular-django/requirements.txt index 96b565c945..f55d021b18 100644 --- a/examples/regular-django/requirements.txt +++ b/examples/regular-django/requirements.txt @@ -1 +1 @@ -django-allauth[mfa,saml,socialaccount,steam]>=64.2.1 +django-allauth[mfa,saml,socialaccount,steam]>=65.0.0