Skip to content

Commit 2f1989a

Browse files
committed
limit flask version #190
1 parent 2e25ff7 commit 2f1989a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# gdbgui release history
22

3-
## 0.11.4.0 (latest master)
3+
## 0.11.3.1
4+
* Limit maximum Flask version to prevent `Session expired. Please refresh this webpage.` error
45
* Rename "premium" to "ad-free"
56
* Do smarter version checking
67
* Fix bug when trying to view "about"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A browser-based frontend for GDB
77
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
88
:target: https://travis-ci.org/cs01/gdbgui
99

10-
.. image:: https://img.shields.io/badge/pypi-0.11.3.0-blue.svg
10+
.. image:: https://img.shields.io/badge/pypi-0.11.3.1-blue.svg
1111
:target: https://pypi.python.org/pypi/gdbgui/
1212

1313
.. image:: https://img.shields.io/badge/python-2.7,3.4,3.5,3.6,pypy-blue.svg

gdbgui/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.3.0
1+
0.11.3.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
EXCLUDE_FROM_PACKAGES = []
1515
REQUIRED = [
16-
'Flask>=0.12.2', # to run server
16+
'Flask>=0.12.2,<1.0', # to run server
1717
'Flask-Compress>=1.4.0', # to compress flask responses
1818
'Flask-SocketIO>=2.9.3', # for websockets
1919
'gevent>=1.2.2', # for websockets (preferred)

0 commit comments

Comments
 (0)