Skip to content

Commit 6902667

Browse files
committed
Bump release to v0.4
1 parent b4edb74 commit 6902667

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGES

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,17 @@ Flask-JWT Changelog
33

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

6+
Version 0.4 - Webstack
7+
----------------------
8+
9+
- Add role check by Aurélien Lajoie
10+
https://github.com/webstack/flask-jwt/pull/4
11+
612
Version 0.3.4 - Webstack
713
------------------------
814

9-
- Remove logging of errors
15+
- Remove logging of errors by Jean-Philippe Morin
16+
https://github.com/webstack/flask-jwt/pull/2
1017

1118
Version 0.3.3 - Webstack
1219
------------------------

flask_jwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from flask import current_app, request, jsonify, _request_ctx_stack
1818
from werkzeug.local import LocalProxy
1919

20-
__version__ = '0.3.4'
20+
__version__ = '0.4'
2121

2222
current_identity = LocalProxy(lambda: getattr(_request_ctx_stack.top, 'current_identity', None))
2323

0 commit comments

Comments
 (0)