Skip to content

Commit c3f8e60

Browse files
committed
Bump version to 0.3.4
1 parent 02138f8 commit c3f8e60

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGES

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Flask-JWT Changelog
33

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

6+
Version 0.3.4 - Webstack
7+
------------------------
8+
9+
- Remove logging of errors
10+
611
Version 0.3.3 - Webstack
712
------------------------
813

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# built documents.
4747
#
4848
# The short X.Y version.
49-
version = '0.3.3'
49+
version = '0.3.4'
5050
# The full version, including alpha/beta/rc tags.
5151
release = version
5252

flask_jwt/__init__.py

+1-1
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.3'
20+
__version__ = '0.3.4'
2121

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_tests(self):
5555

5656
setup(
5757
name='Webstack-Flask-JWT',
58-
version='0.3.3',
58+
version='0.3.4',
5959
url='https://github.com/webstack/flask-jwt',
6060
license='MIT',
6161
author='Matt Wright',

0 commit comments

Comments
 (0)