mirror of
https://github.com/cs01/gdbgui
synced 2024-11-16 07:47:46 +01:00
update pygdbmi version; update changelog
This commit is contained in:
parent
4d1563a5cd
commit
95b4877262
7 changed files with 11 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -28,7 +28,7 @@ struct mystruct_t {
|
|||
};
|
||||
|
||||
|
||||
int main(void) {
|
||||
int main(int argc, char *argv) {
|
||||
printf("Hello World\n");
|
||||
|
||||
int retval = 1;
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.9.1.0
|
||||
0.9.1.1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
__title__ = 'gdbgui'
|
||||
__version__ = '0.9.1.0'
|
||||
__version__ = '0.9.1.1'
|
||||
__author__ = 'Chad Smith'
|
||||
__copyright__ = 'Copyright Chad Smith'
|
||||
|
|
|
@ -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
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue