diff --git a/CHANGELOG b/CHANGELOG index 5943a631..4453b32c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ ## Unreleased # +## Version 2.8.3 – May 15th, 2018 ## + +- Implement API version 2.12 changes + ## Version 2.8.0 – April 5th, 2018 ## - Implement API version 2.11 changes diff --git a/recurly/__init__.py b/recurly/__init__.py index 520810f6..c3693b3f 100644 --- a/recurly/__init__.py +++ b/recurly/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = '2.8.1' +__version__ = '2.8.3' __python_version__ = '.'.join(map(str, sys.version_info[:3])) cached_rate_limits = { @@ -922,10 +922,9 @@ def pending(self): but does not run any transactions. Returns: - InvoiceCollection: The authorized collection of invoices + InvoiceCollection: The pending collection of invoices """ - url = recurly.base_uri() + self.collection_path + '/pending' - return self.__invoice(url) + return self.__invoice(self.collection_path + '/pending') def __invoice(self, url): # We must null out currency in subscriptions and adjustments