Skip to content

Commit 43bc1ca

Browse files
author
stonebig
committed
prepare v0.8.8
1 parent 8925423 commit 43bc1ca

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ Changelog
22
=========
33

44

5+
2015-04-16a : v0.8.8 'Continuous Integration !'
6+
-------------------------------------------------
7+
8+
* re-structure as a package for Appveyor Continuous Integration tests
9+
10+
* include a global test
11+
12+
513
2014-09-10b : v0.8.7.4 '.Import this !'
614
---------------------------------------
715

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Features
1818

1919
* Support of sql-embedded Python functions
2020

21-
* Easy to distribute : 1 Python source file, 2.7/3.3+ compatible
21+
* Easy to distribute : 1 Python source file, 2.7/3.4+ compatible
2222

2323
* Easy to start : just launch sqlite_bro
2424

@@ -35,8 +35,7 @@ You can install, upgrade, uninstall sqlite_bro.py with these commands::
3535
$ pip install --upgrade sqlite_bro
3636
$ pip uninstall sqlite_bro
3737

38-
or just launch it from IPython with %load https://raw.githubusercontent.com/stonebig/sqlite_bro/master/sqlite_bro.py
39-
38+
or just launch latest version from IPython with %load https://raw.githubusercontent.com/stonebig/sqlite_bro/master/sqlite_bro/sqlite_bro.py
4039
or just copy the file 'sqlite_bro.py' to any pc (with python installed)
4140

4241
Example usage

sqlite_bro/sqlite_bro.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class App:
3131
"""the GUI graphic application"""
3232
def __init__(self):
3333
"""create a tkk graphic interface with a main window tk_win"""
34-
self.__version__ = '0.8.7.4'
35-
self._title = "2014-09-10b : '.Import this !"
34+
self.__version__ = '0.8.8'
35+
self._title = "2015-04-16a : 'Continuous Integration !"
3636
self.conn = None # Baresql database object
3737
self.database_file = ""
3838
self.tk_win = Tk()

0 commit comments

Comments
 (0)