diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 79bdf8ca..6ca2424b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,9 +4,14 @@ Changelog * 0.8.3 (August 24, 2020) * Fixed issue with CompanyCurrency object * Added to_ref method to the Term object + * Added to_ref method to the Invoice object * Fixed issues with RefundReceipt * Added RefundReceiptCheckPayment object to RefundReceipt object - * Added from_json to MetaData + * Added from_json method to MetaData + * Added SendMixin to Estimate object + * Added SendMixin to PurchaseOrder object + * Added Memo field to PurchaseOrder + * Added support for TDS (special type of tax applied to Indian companies) * 0.8.2 (April 22nd, 2020) * Added PrimaryTaxIdentifier to Customer object diff --git a/setup.py b/setup.py index 36c61477..0ff23cb4 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*parts): return fp.read() -VERSION = (0, 8, 2) +VERSION = (0, 8, 3) version = '.'.join(map(str, VERSION)) setup( @@ -33,6 +33,7 @@ def read(*parts): 'setuptools', 'intuit-oauth==1.2.3', 'rauth>=0.7.1', + 'authclient', 'requests>=2.19.1', 'simplejson>=3.17.0', 'six>=1.14.0',