diff --git a/docs/source/conf.py b/docs/source/conf.py index 071bf74..32fd6db 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -11,7 +11,7 @@ project = 'drf-social-oauth2' copyright = '2023, Wagner de Lima' author = 'Wagner de Lima' -release = '2.2.0' +release = '2.2.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 7689ca3..e2a4141 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -23,7 +23,7 @@ This framework is published at the PyPI, install it with pip: .. code-block:: console - $ pip install drf_social_oauth2==2.2.0 + $ pip install drf_social_oauth2==2.2.1 To enable OAuth2 social authentication support for your Django REST Framework application, you need to install diff --git a/drf_social_oauth2/__init__.py b/drf_social_oauth2/__init__.py index 81cade7..e303da0 100644 --- a/drf_social_oauth2/__init__.py +++ b/drf_social_oauth2/__init__.py @@ -6,7 +6,7 @@ and a ton more! """ -__version__ = '2.2.0' +__version__ = '2.2.1' try: from secrets import SystemRandom