Skip to content

Commit

Permalink
Release v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane committed Mar 24, 2017
1 parent c570ba3 commit 7a8f3e8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Flask-JWT Changelog

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

Version 0.3.3 - Webstack
------------------------

https://github.com/mattupstate/flask-jwt/pull/95

Version 0.3.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# built documents.
#
# The short X.Y version.
version = '0.3.2'
version = '0.3.3'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion flask_jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from flask import current_app, request, jsonify, _request_ctx_stack
from werkzeug.local import LocalProxy

__version__ = '0.3.2'
__version__ = '0.3.3'

logger = logging.getLogger(__name__)

Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
Flask-JWT
=========
Flask-JWT is a Flask extension that adds basic Json Web Token features to any application.
Flask-JWT is a Flask extension that adds basic Json Web Token features to any
application.
Resources
---------
Expand Down Expand Up @@ -53,9 +54,9 @@ def run_tests(self):
sys.exit(errno)

setup(
name='Flask-JWT',
version='0.3.2',
url='https://github.com/mattupstate/flask-jwt',
name='Webstack-Flask-JWT',
version='0.3.3',
url='https://github.com/webstack/flask-jwt',
license='MIT',
author='Matt Wright',
author_email='matt@nobien.net',
Expand All @@ -69,7 +70,7 @@ def run_tests(self):
tests_require=get_requirements('-dev'),
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 7a8f3e8

Please sign in to comment.