From 9d7e4a5379b06c395e12791a50e6f2f23c3fd271 Mon Sep 17 00:00:00 2001 From: Edward Emanuel Date: Wed, 8 Mar 2023 11:14:46 -0600 Subject: [PATCH] Update version number --- quickbooks/client.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quickbooks/client.py b/quickbooks/client.py index 22b9ede..156530a 100644 --- a/quickbooks/client.py +++ b/quickbooks/client.py @@ -152,7 +152,7 @@ def change_data_capture(self, entity_string, changed_since): def make_request(self, request_type, url, request_body=None, content_type='application/json', params=None, file_path=None, request_id=None): - + if not params: params = {} diff --git a/setup.py b/setup.py index afc330a..a52279b 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*parts): return fp.read() -VERSION = (0, 9, 2) +VERSION = (0, 9, 3) version = '.'.join(map(str, VERSION)) setup(