From 6943dec863d9a581efd78c0d18a42d81d45ead6c Mon Sep 17 00:00:00 2001 From: Edward Emanuel Date: Tue, 9 Jul 2024 11:05:07 -0500 Subject: [PATCH] 0.9.9 release update --- CHANGELOG.rst | 8 +++++--- Pipfile | 1 + Pipfile.lock | 11 ++++++++++- setup.py | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c3b59f7..8c40d98 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,12 +1,14 @@ Changelog ========= -* 0.9.8 (July 9, 2024) - * Added ItemAccountRef to SalesItemLineDetail - * Updated from_json example in readme +* 0.9.9 (July 9, 2024) * Removed simplejson * Added use_decimal option (See PR: https://github.com/ej2/python-quickbooks/pull/356 for details) +* 0.9.8 (May 20, 2024) + * Added ItemAccountRef to SalesItemLineDetail + * Updated from_json example in readme + * 0.9.7 (March 12, 2024) * Update intuit-oauth dependency * Updated CompanyCurrency to ref to use Code instead of Id diff --git a/Pipfile b/Pipfile index ab07e83..3cd8321 100644 --- a/Pipfile +++ b/Pipfile @@ -14,3 +14,4 @@ urllib3 = ">=2.1.0" intuit-oauth = "==1.2.5" requests = ">=2.31.0" requests_oauthlib = ">=1.3.1" +setuptools = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 9e8ef69..0259044 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e25e6a93ea424fe54edd3dbdbd0eed5c76b49764b8e64cdb4c70d271932331f0" + "sha256": "6a78c31b140898b03234b1dc6ab067544c9588f797604f80a23e274afe08f875" }, "pipfile-spec": 6, "requires": {}, @@ -197,6 +197,15 @@ "markers": "python_version >= '3.6' and python_version < '4'", "version": "==4.9" }, + "setuptools": { + "hashes": [ + "sha256:b8b8060bb426838fbe942479c90296ce976249451118ef566a5a0b7d8b78fb05", + "sha256:bd63e505105011b25c3c11f753f7e3b8465ea739efddaccef8f0efac2137bac1" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==70.2.0" + }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", diff --git a/setup.py b/setup.py index b7800e0..1b4c1c5 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*parts): return fp.read() -VERSION = (0, 9, 8) +VERSION = (0, 9, 9) version = '.'.join(map(str, VERSION)) setup(