diff --git a/CHANGES.rst b/CHANGES.rst index 81c855af..aac1ad14 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog Here you can see the full list of changes between each Flask-OAuthlib release. +Version 0.9.5 +------------- + +Released on May 16, 2018 + +- Fix error handlers +- Update supported OAuthlib +- Add support for string type token + Version 0.9.4 ------------- diff --git a/flask_oauthlib/__init__.py b/flask_oauthlib/__init__.py index e531f41b..2f58e5e1 100644 --- a/flask_oauthlib/__init__.py +++ b/flask_oauthlib/__init__.py @@ -7,11 +7,11 @@ remote OAuth enabled applications, and also helps you creating your own OAuth servers. - :copyright: (c) 2013 - 2017 by Hsiaoming Yang. + :copyright: (c) 2013 by Hsiaoming Yang. :license: BSD, see LICENSE for more details. """ -__version__ = "0.9.4" +__version__ = "0.9.5" __author__ = "Hsiaoming Yang " __homepage__ = 'https://github.com/lepture/flask-oauthlib' __license__ = 'BSD'