Skip to content

Commit 73f8786

Browse files
authored
Merge pull request #35 from stackql/feature/updates
v3.5.7
2 parents ed98acb + b462767 commit 73f8786

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## v3.5.5 (2024-04-17)
3+
## v3.5.7 (2024-04-17)
44

55
### Updates
66

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,4 @@ To publish the package to PyPI, run the following command:
194194

195195
::
196196

197-
twine upload --config-file .pypirc dist/pystackql-3.5.5.tar.gz
197+
twine upload --config-file .pypirc dist/pystackql-3.5.7.tar.gz

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '3.5.5'
29+
release = '3.5.7'
3030

3131

3232
# -- General configuration ---------------------------------------------------

pystackql/stackql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ def execute(self, query, suppress_errors=True):
563563
try:
564564
return json.loads(output["data"])
565565
except ValueError:
566-
return {"error": "Invalid JSON output"}
566+
return {"error": f"Invalid JSON output : {output['data']}"}
567567
else:
568568
if "error" in output:
569569
if suppress_errors:

setup.py

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

1111
setup(
1212
name='pystackql',
13-
version='3.5.5',
13+
version='3.5.7',
1414
description='A Python interface for StackQL',
1515
long_description=readme,
1616
author='Jeffrey Aven',

0 commit comments

Comments
 (0)