Skip to content

Commit

Permalink
Release 1.1.3
Browse files Browse the repository at this point in the history
Update load strategy to use prepared request
  • Loading branch information
pszpetkowski committed Nov 22, 2017
1 parent fabd8c5 commit 78516a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion djoser/social/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def validate(self, attrs):
request = self.context['request']
request.GET = request.data

strategy = load_strategy(self.context['request'])
strategy = load_strategy(request)
redirect_uri = strategy.session_get('redirect_uri')

backend_name = self.context['view'].kwargs['provider']
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.2'
version = '1.1.3'
# The full version, including alpha/beta/rc tags.
release = '1.1.2'
release = '1.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_packages(package):

setup(
name='djoser',
version='1.1.2',
version='1.1.3',
packages=get_packages('djoser'),
license='MIT',
author='SUNSCRAPERS',
Expand Down

0 comments on commit 78516a6

Please sign in to comment.