From b462767ec71a8f8d8de7f3e3a10e8764621db6f0 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Wed, 17 Apr 2024 19:06:17 +1000 Subject: [PATCH] v3.5.7 --- CHANGELOG.md | 2 +- README.rst | 2 +- docs/source/conf.py | 2 +- pystackql/stackql.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a2ab9..ea7fbf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v3.5.5 (2024-04-17) +## v3.5.7 (2024-04-17) ### Updates diff --git a/README.rst b/README.rst index d367bf1..843e6a3 100644 --- a/README.rst +++ b/README.rst @@ -194,4 +194,4 @@ To publish the package to PyPI, run the following command: :: - twine upload --config-file .pypirc dist/pystackql-3.5.5.tar.gz + twine upload --config-file .pypirc dist/pystackql-3.5.7.tar.gz diff --git a/docs/source/conf.py b/docs/source/conf.py index 9fb341a..a9bc4c4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '3.5.5' +release = '3.5.7' # -- General configuration --------------------------------------------------- diff --git a/pystackql/stackql.py b/pystackql/stackql.py index 9d142f9..102d836 100644 --- a/pystackql/stackql.py +++ b/pystackql/stackql.py @@ -563,7 +563,7 @@ def execute(self, query, suppress_errors=True): try: return json.loads(output["data"]) except ValueError: - return {"error": "Invalid JSON output"} + return {"error": f"Invalid JSON output : {output['data']}"} else: if "error" in output: if suppress_errors: diff --git a/setup.py b/setup.py index 2bd5922..1f0bb9f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='pystackql', - version='3.5.5', + version='3.5.7', description='A Python interface for StackQL', long_description=readme, author='Jeffrey Aven',