diff -Nru chargebee2-python-2.4.4/CHANGELOG.md chargebee2-python-2.4.5/CHANGELOG.md --- chargebee2-python-2.4.4/CHANGELOG.md 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/CHANGELOG.md 2018-02-01 08:13:23.000000000 +0000 @@ -1,4 +1,16 @@ -### v2.4.4 (2017-01-12) +### v2.4.5 (2018-02-01) +* * * + +The attribute 'round_off_amount' have been added in Invoice an Credit note resources. +See : https://apidocs.chargebee.com/docs/api/invoices#invoice_attributes + +The attribute 'settled_at' has been added to transaction resource. +See : https://apidocs.chargebee.com/docs/api/transactions#transaction_attributes + +'Collect now' API in Hosted pages resource has been undeprecated. +See : https://apidocs.chargebee.com/docs/api/hosted_pages#collect_now + +### v2.4.4 (2018-01-12) * New endpoint "Update invoice details" has been added to Invoice resource. ### v2.4.3 (2017-11-27) diff -Nru chargebee2-python-2.4.4/chargebee/models/credit_note.py chargebee2-python-2.4.5/chargebee/models/credit_note.py --- chargebee2-python-2.4.4/chargebee/models/credit_note.py 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/chargebee/models/credit_note.py 2018-02-01 08:13:23.000000000 +0000 @@ -29,8 +29,8 @@ fields = ["id", "customer_id", "subscription_id", "reference_invoice_id", "type", "reason_code", \ "status", "vat_number", "date", "price_type", "currency_code", "total", "amount_allocated", \ "amount_refunded", "amount_available", "refunded_at", "voided_at", "resource_version", "updated_at", \ - "sub_total", "line_items", "discounts", "line_item_discounts", "taxes", "line_item_taxes", "linked_refunds", \ - "allocations", "deleted"] + "sub_total", "round_off_amount", "line_items", "discounts", "line_item_discounts", "taxes", \ + "line_item_taxes", "linked_refunds", "allocations", "deleted"] @staticmethod diff -Nru chargebee2-python-2.4.4/chargebee/models/invoice.py chargebee2-python-2.4.5/chargebee/models/invoice.py --- chargebee2-python-2.4.4/chargebee/models/invoice.py 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/chargebee/models/invoice.py 2018-02-01 08:13:23.000000000 +0000 @@ -48,7 +48,7 @@ "price_type", "date", "due_date", "net_term_days", "currency_code", "total", "amount_paid", \ "amount_adjusted", "write_off_amount", "credits_applied", "amount_due", "paid_at", "dunning_status", \ "next_retry_at", "voided_at", "resource_version", "updated_at", "sub_total", "tax", "first_invoice", \ - "has_advance_charges", "amount_to_collect", "line_items", "discounts", "line_item_discounts", \ + "has_advance_charges", "amount_to_collect", "round_off_amount", "line_items", "discounts", "line_item_discounts", \ "taxes", "line_item_taxes", "linked_payments", "applied_credits", "adjustment_credit_notes", \ "issued_credit_notes", "linked_orders", "notes", "shipping_address", "billing_address", "deleted"] diff -Nru chargebee2-python-2.4.4/chargebee/models/transaction.py chargebee2-python-2.4.5/chargebee/models/transaction.py --- chargebee2-python-2.4.4/chargebee/models/transaction.py 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/chargebee/models/transaction.py 2018-02-01 08:13:23.000000000 +0000 @@ -15,9 +15,9 @@ pass fields = ["id", "customer_id", "subscription_id", "gateway_account_id", "payment_source_id", \ - "payment_method", "reference_number", "gateway", "type", "date", "currency_code", "amount", \ - "id_at_gateway", "status", "fraud_flag", "error_code", "error_text", "voided_at", "resource_version", \ - "updated_at", "fraud_reason", "amount_unused", "masked_card_number", "reference_transaction_id", \ + "payment_method", "reference_number", "gateway", "type", "date", "settled_at", "currency_code", \ + "amount", "id_at_gateway", "status", "fraud_flag", "error_code", "error_text", "voided_at", \ + "resource_version", "updated_at", "fraud_reason", "amount_unused", "masked_card_number", "reference_transaction_id", \ "refunded_txn_id", "reversal_transaction_id", "linked_invoices", "linked_credit_notes", "linked_refunds", \ "deleted"] diff -Nru chargebee2-python-2.4.4/chargebee/version.py chargebee2-python-2.4.5/chargebee/version.py --- chargebee2-python-2.4.4/chargebee/version.py 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/chargebee/version.py 2018-02-01 08:13:23.000000000 +0000 @@ -1 +1 @@ -VERSION = '2.4.4' +VERSION = '2.4.5' diff -Nru chargebee2-python-2.4.4/debian/changelog chargebee2-python-2.4.5/debian/changelog --- chargebee2-python-2.4.4/debian/changelog 2018-01-15 23:50:57.000000000 +0000 +++ chargebee2-python-2.4.5/debian/changelog 2018-02-06 05:49:11.000000000 +0000 @@ -1,3 +1,10 @@ +chargebee2-python (2.4.5-1) unstable; urgency=medium + + * New upstream release + * Update debian/copyright + + -- Scott Kitterman Tue, 06 Feb 2018 00:49:11 -0500 + chargebee2-python (2.4.4-1) unstable; urgency=medium * New upstream release diff -Nru chargebee2-python-2.4.4/debian/copyright chargebee2-python-2.4.5/debian/copyright --- chargebee2-python-2.4.4/debian/copyright 2017-06-20 16:44:33.000000000 +0000 +++ chargebee2-python-2.4.5/debian/copyright 2018-02-06 05:49:11.000000000 +0000 @@ -1,10 +1,10 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ChargeBee Python Upstream-Contact: ChargeBee Source: https://github.com/chargebee/chargebee-python/ Files: * -Copyright: Copyright (c) 2011-2016 ChargeBee, Inc. +Copyright: Copyright (c) 2011-2018 ChargeBee, Inc. License: Expat Files: chargebee/ssl/ca-certs.crt @@ -72,7 +72,7 @@ ***** END LICENSE BLOCK ***** . On Debian systems, the full text of the GNU General Public License can be - found in the file `/usr/share/common-licenses/GPL'. + found in the file `/usr/share/common-licenses/GPL-2'. . On Debian systems, the full text of the GNU Lesser General Public License - can be found in the file `/usr/share/common-licenses/LGPL'. + can be found in the file `/usr/share/common-licenses/LGPL-2.1'. diff -Nru chargebee2-python-2.4.4/LICENSE chargebee2-python-2.4.5/LICENSE --- chargebee2-python-2.4.4/LICENSE 2018-01-12 14:11:00.000000000 +0000 +++ chargebee2-python-2.4.5/LICENSE 2018-02-01 08:13:23.000000000 +0000 @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2011-2017 ChargeBee, Inc. +Copyright (c) 2011-2018 ChargeBee, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation