From 87edc03effd8b2932294f1da23e766a8b1adf2ee Mon Sep 17 00:00:00 2001 From: Raymond Penners Date: Fri, 30 Aug 2024 10:12:15 +0200 Subject: [PATCH] chore: Release 64.2.0 --- ChangeLog.rst | 5 ++++- allauth/__init__.py | 2 +- examples/react-spa/backend/requirements.txt | 2 +- examples/regular-django/requirements.txt | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 090369f3be..5b2e933f77 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,9 @@ -64.2.0 (unreleased) +64.2.0 (2024-08-30) ******************* +Note worthy changes +------------------- + - Verifying email addresses by means of a code (instead of a link) is now supported. See ``settings.ACCOUNT_EMAIL_VERIFICATION_BY_CODE_ENABLED``. diff --git a/allauth/__init__.py b/allauth/__init__.py index 5e57999d9c..e6cca498a2 100644 --- a/allauth/__init__.py +++ b/allauth/__init__.py @@ -8,7 +8,7 @@ """ -VERSION = (64, 2, 0, "dev", 0) +VERSION = (64, 2, 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 30cad14b79..92dc3d191e 100644 --- a/examples/react-spa/backend/requirements.txt +++ b/examples/react-spa/backend/requirements.txt @@ -1,2 +1,2 @@ -django-allauth[mfa,socialaccount]>=64.1.0 +django-allauth[mfa,socialaccount]>=64.2.0 qrcode >= 7.0.0 diff --git a/examples/regular-django/requirements.txt b/examples/regular-django/requirements.txt index e97343d2eb..3426228acd 100644 --- a/examples/regular-django/requirements.txt +++ b/examples/regular-django/requirements.txt @@ -1 +1 @@ -django-allauth[mfa,saml,socialaccount,steam]>=64.1.0 +django-allauth[mfa,saml,socialaccount,steam]>=64.2.0