Skip to content

Commit 37cd734

Browse files
committed
Bump version to 0.0.4
1 parent f273783 commit 37cd734

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pycovenantsql/connections.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ def read(self):
299299
if data is None:
300300
# exec result
301301
return
302+
302303
# read json data
303304
try:
304305
# return from query api, data like {'columns': ['name'], 'rows': [['test'], ['test2'], ['test3'], ['test4']], 'types': ['TEXT']}
@@ -308,6 +309,7 @@ def read(self):
308309
self.affected_rows = data['affected_rows']
309310
self.insert_id = data['last_insert_id']
310311
return
312+
311313
rows = []
312314
for line in data['rows']:
313315
row = []

setup.py

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

88
setup(
99
name="PyCovenantSQL",
10-
version="0.0.3",
10+
version="0.0.4",
1111
url='https://github.com/CovenantSQL/python-driver/',
1212
project_urls={
1313
"Documentation": "https://pycovenantsql.readthedocs.io/",

0 commit comments

Comments
 (0)