From: Matías Aguirre Date: Tue, 15 Mar 2011 23:39:59 +0000 (-0300) Subject: Update doc and version. Google OAuth2 support complete, so far. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5c857b95f0f0690536ae7c4d9924d51053f7db82;p=django-social-auth.git Update doc and version. Google OAuth2 support complete, so far. --- diff --git a/README.rst b/README.rst index d8252a5..e0713bc 100644 --- a/README.rst +++ b/README.rst @@ -427,6 +427,9 @@ Recently Google launched OAuth2 support following the definition at developers *must* register an application and apply for a set of keys. Check `Google OAuth2`_ document for details. +**Note**: This support is experimental as Google implementation may change and + OAuth2 is still a draft. + To enable OAuth2 support: - fill "Client Key" and "Client Secret" settings, these values can be obtained diff --git a/social_auth/__init__.py b/social_auth/__init__.py index 6256b2b..b0d17d0 100644 --- a/social_auth/__init__.py +++ b/social_auth/__init__.py @@ -2,5 +2,5 @@ Django-social-auth application, allows OpenId or OAuth user registration/authentication just adding a few configurations. """ -version = (0, 3, 7) +version = (0, 3, 8) __version__ = '.'.join(map(str, version))