Skip to content

Commit 8b8e638

Browse files
committed
bumped version 0.9.0
1 parent 768e4ff commit 8b8e638

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,14 @@ Changelog
8888
---------
8989

9090

91-
master branch
92-
~~~~~~~~~~~~~
91+
0.9.0 [2015-07-28]
92+
~~~~~~~~~~~~~~~~~~
9393

9494
* ``oauthlib_backend_class`` is now pluggable through Django settings
9595
* #127: ``application/json`` Content-Type is now supported using ``JSONOAuthLibCore``
9696
* #238: Fixed redirect uri handling in case of error
9797
* #229: Invalidate access tokens when getting a new refresh token
98+
* added support for oauthlib 1.0
9899

99100
0.8.2 [2015-06-25]
100101
~~~~~~~~~~~~~~~~~~

docs/changelog.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Changelog
22
=========
33

4-
master branch
5-
-------------
4+
0.9.0 [2015-07-28]
5+
~~~~~~~~~~~~~~~~~~
66

77
* ``oauthlib_backend_class`` is now pluggable through Django settings
88
* #127: ``application/json`` Content-Type is now supported using ``JSONOAuthLibCore``
99
* #238: Fixed redirect uri handling in case of error
1010
* #229: Invalidate access tokens when getting a new refresh token
11+
* added support for oauthlib 1.0
1112

1213

1314
0.8.2 [2015-06-25]

oauth2_provider/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.8.2'
1+
__version__ = '0.9.0'
22

33
__author__ = "Massimiliano Pippi & Federico Frenguelli"
44

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_version(package):
5252
install_requires=[
5353
'django>=1.4',
5454
'django-braces>=1.2.2',
55-
'oauthlib>=0.6.2',
55+
'oauthlib==1.0.1',
5656
'six',
5757
],
5858
zip_safe=False,

0 commit comments

Comments
 (0)