diff --git a/ChangeLog.rst b/ChangeLog.rst index ca542b28ba..1ae7e5de01 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,12 +1,9 @@ -64.0.0 (unreleased) +64.0.0 (2024-07-31) ******************* Note worthy changes ------------------- -- Added support for WebAuthn based security keys and passkey login. Note that - this is currently disabled by default. - - The 0.x.y version numbers really did not do justice to the state of the project, and we are way past the point where a version 1.0 would be applicable. Additionally, 64 is a nice round number. Therefore, the version @@ -15,6 +12,9 @@ Note worthy changes include minor documented backwards incompatibilities. Always read the release notes before upgrading. +- Added support for WebAuthn based security keys and passkey login. Note that + this is currently disabled by default. + - Headless: The TOTP URI is now available in the MFA activation response. - Headless: When trying to sign up while a user is already logged in, you now get diff --git a/allauth/__init__.py b/allauth/__init__.py index e64dfa5318..71010123e5 100644 --- a/allauth/__init__.py +++ b/allauth/__init__.py @@ -8,7 +8,7 @@ """ -VERSION = (64, 0, 0, "dev", 0) +VERSION = (64, 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 2bedd33416..8118022e94 100644 --- a/examples/react-spa/backend/requirements.txt +++ b/examples/react-spa/backend/requirements.txt @@ -1,2 +1,2 @@ -django-allauth[mfa,socialaccount]>=0.63.6 +django-allauth[mfa,socialaccount]>=64.0.0 qrcode >= 7.0.0 diff --git a/examples/regular-django/requirements.txt b/examples/regular-django/requirements.txt index a97b675e9b..081dac7db7 100644 --- a/examples/regular-django/requirements.txt +++ b/examples/regular-django/requirements.txt @@ -1 +1 @@ -django-allauth[mfa,saml,socialaccount,steam]>=0.63.6 +django-allauth[mfa,saml,socialaccount,steam]>=64.0.0