Skip to content

Commit

Permalink
Bump to 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalloc committed Feb 23, 2018
1 parent 85380f0 commit 5bd15eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
import sys, os
import sys, os, io, re
# flask-jwt-extended documentation build configuration file, created by
# sphinx-quickstart on Thu Oct 6 13:07:36 2016.
#
Expand Down Expand Up @@ -64,10 +64,10 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'3.7.0'
# The full version, including alpha/beta/rc tags.
release = u'3.7.0'
with io.open('../flask_jwt_extended/__init__.py', encoding='utf-8') as f:
package_version = re.search(r"__version__ = '(.+)'", f.read()).group(1)
version = package_version
release = package_version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion flask_jwt_extended/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
get_jti, decode_token, get_csrf_token
)

__version__ = '3.7.0'
__version__ = '3.7.1'

0 comments on commit 5bd15eb

Please sign in to comment.