diff --git a/README.md b/README.md index 017bcaa..3fbf72e 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ OAuth signin with django rest framework. Requirements ----------- -- python (3.5, 3.6, 3.7, 3.8) +- python (3.6, 3.7, 3.8, 3.9) - django (2.2, 3.0, 3.1) - djangorestframework (>=3.9, <4.0) -- social-auth-core (>=3.0, <4.0) -- social-auth-app-django (>=3.1, <4.0) +- social-auth-core (>=4.0, <5.0) +- social-auth-app-django (>=4.0, <5.0) - [optional] djangorestframework-simplejwt (>=4.4.0) - [optional] django-rest-knox (>=4.0.0, <5.0.0) @@ -539,6 +539,7 @@ 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) +- Dipendra Raj Panta, [Mr-DRP](https://github.com/Mr-DRP) +- JD, [jd-0001](https://github.com/jd-0001) +- Harsh Patel, [eelectronn](https://github.com/eelectronn) +- Devid, [sevdog](https://github.com/sevdog) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 35658be..ea985cd 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,14 @@ rest_social_auth release notes ============================== +v6.0.0 +------ +- Add support of social-auth-core==4.0 +- Add support of social-auth-app-django==4.0 +- Drop support of Python 3.5 +- Drop support of social-auth-core<4.0 +- Drop support of social-auth-app-django<4.0 + v5.0.1 ------ - Expect error without response during error handling diff --git a/requirements.txt b/requirements.txt index 29fa240..2c7fe92 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ django>=2.2,<4.0 djangorestframework<4.0 -social-auth-core>=3.0,<4.1 -social-auth-app-django>=3.1.0,<4.1 +social-auth-core>=4.0,<5.0 +social-auth-app-django>=4.0,<5.0 diff --git a/rest_social_auth/__init__.py b/rest_social_auth/__init__.py index 2040619..a0c57ab 100644 --- a/rest_social_auth/__init__.py +++ b/rest_social_auth/__init__.py @@ -1,2 +1,2 @@ __author__ = 'st4lk' -__version__ = '5.0.1' +__version__ = '6.0.0'