Skip to content

Commit 68d30a4

Browse files
committed
Ready for release 0.9.6
1 parent ed0c571 commit 68d30a4

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGES.rst

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ Changelog
33

44
Here you can see the full list of changes between each Flask-OAuthlib release.
55

6+
Version 0.9.6
7+
-------------
8+
9+
Released on Sept 7, 2020
10+
11+
- Fix dependency conflict with requests-oauthlib
12+
- Fix imports for Werkzeug
13+
14+
615
Version 0.9.5
716
-------------
817

@@ -12,6 +21,7 @@ Released on May 16, 2018
1221
- Update supported OAuthlib
1322
- Add support for string type token
1423

24+
1525
Version 0.9.4
1626
-------------
1727

flask_oauthlib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313

14-
__version__ = "0.9.5"
14+
__version__ = "0.9.6"
1515
__author__ = "Hsiaoming Yang <[email protected]>"
1616
__homepage__ = 'https://github.com/lepture/flask-oauthlib'
1717
__license__ = 'BSD'

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ def fread(filename):
6363
'Programming Language :: Python :: 2.7',
6464
'Programming Language :: Python :: 3.3',
6565
'Programming Language :: Python :: 3.4',
66+
'Programming Language :: Python :: 3.5',
67+
'Programming Language :: Python :: 3.6',
6668
'Programming Language :: Python :: Implementation',
6769
'Programming Language :: Python :: Implementation :: CPython',
6870
'Programming Language :: Python :: Implementation :: PyPy',

0 commit comments

Comments
 (0)