diff --git a/Makefile b/Makefile index 9497619..314f2d4 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ native-install-python-versions: .install-python-versions PYENV_ROOT=$(PROJECT_PATH_NATIVE)/.pyenv $(PROJECT_PATH_NATIVE)/.pyenv/bin/pyenv install -s 3.6.10 PYENV_ROOT=$(PROJECT_PATH_NATIVE)/.pyenv $(PROJECT_PATH_NATIVE)/.pyenv/bin/pyenv install -s 3.7.7 PYENV_ROOT=$(PROJECT_PATH_NATIVE)/.pyenv $(PROJECT_PATH_NATIVE)/.pyenv/bin/pyenv install -s 3.8.2 - pyenv global system 3.5.9 3.6.10 3.7.7 3.8.2 + $(PROJECT_PATH_NATIVE)/.pyenv/bin/pyenv global system 3.5.9 3.6.10 3.7.7 3.8.2 touch $@ native-test-tox: native-install-python-versions native-clean diff --git a/README.md b/README.md index 9b23490..017bcaa 100644 --- a/README.md +++ b/README.md @@ -539,3 +539,6 @@ Contributors - John Vandenberg, [jayvdb](https://github.com/jayvdb) - Anton_Datsik, [AntonDatsik](https://github.com/AntonDatsik) - Netizen29, [Netizen29](https://github.com/Netizen29) +- Dipendra Raj Panta, [Dipendra Raj Panta](https://github.com/Mr-DRP) +- JD, [JD](https://github.com/jd-0001) +- Harsh Patel, [Harsh Patel](https://github.com/eelectronn) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f6fb040..4971c31 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,18 @@ rest_social_auth release notes ============================== +v5.0.0 +------ +- Update user serializer: exclude field only if it was defined in customer user model +- Include error message from social provider into HTTP response of API +- Use `path()` django function instead of deprecated `url()` +- Drop support of Django 1.11 +- Drop support of Python 2.7 +- Drop support of deprecated `djangorestframework-jwt` dependency +- Add support of Django 3.1 + +Issues: #137 + v4.2.0 ------ - Take provider name from URL first diff --git a/rest_social_auth/__init__.py b/rest_social_auth/__init__.py index 61689dd..9a22a50 100644 --- a/rest_social_auth/__init__.py +++ b/rest_social_auth/__init__.py @@ -1,2 +1,2 @@ __author__ = 'st4lk' -__version__ = '4.2.0' +__version__ = '5.0.0' diff --git a/setup.py b/setup.py index a8a5d19..b96d66f 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,6 @@ def __read(fname): 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',