update pygdbmi version; update changelog

This commit is contained in:
Chad Smith 2017-12-18 20:41:42 -08:00
parent 4d1563a5cd
commit 95b4877262
7 changed files with 11 additions and 7 deletions

View file

@ -3,6 +3,10 @@
## dev
Changes that are in master but have not yet been pushed to PyPI.
## 0.9.1.1
* Fix bug when passing arguments to gdb
* Require latest version of pygdbmi for faster parsing of large gdb output
## 0.9.1.0
* Lazily load files (issue #131)
* Update setup.py to build wheels

View file

@ -7,7 +7,7 @@ A browser-based frontend for GDB
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
:target: https://travis-ci.org/cs01/gdbgui
.. image:: https://img.shields.io/badge/pypi-0.9.1.0-blue.svg
.. image:: https://img.shields.io/badge/pypi-0.9.1.1-blue.svg
:target: https://pypi.python.org/pypi/gdbgui/
.. image:: https://img.shields.io/badge/python-2.7,3.4,3.5,3.6,pypy-blue.svg

View file

@ -28,7 +28,7 @@ struct mystruct_t {
};
int main(void) {
int main(int argc, char *argv) {
printf("Hello World\n");
int retval = 1;

View file

@ -1 +1 @@
0.9.1.0
0.9.1.1

View file

@ -1,4 +1,4 @@
__title__ = 'gdbgui'
__version__ = '0.9.1.0'
__version__ = '0.9.1.1'
__author__ = 'Chad Smith'
__copyright__ = 'Copyright Chad Smith'

View file

@ -1,7 +1,7 @@
Flask==0.12.2
pygdbmi==0.7.4.4
pygdbmi==0.8.0.0
pypugjs==4.2.2
Flask-SocketIO==2.9.2
Flask-SocketIO==2.9.3
eventlet==0.21.0
Pygments==2.2.0
gevent==1.2.2

View file

@ -15,7 +15,7 @@ CURDIR = os.path.abspath(os.path.dirname(__file__))
EXCLUDE_FROM_PACKAGES = []
REQUIRED = [
'Flask>=0.12.2', # to run server
'pygdbmi>=0.7.4.4', # to parse gdb output
'pygdbmi>=0.8.0.0', # to parse gdb output
'pypugjs>=4.2.2', # to use .pug instead of .html
'Flask-SocketIO>=2.9.2', # for websockets
'gevent>=1.2.2', # for websockets (preferred)