diff --git a/CHANGELOG b/CHANGELOG index 8e73e1a9..bc04f288 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@ ## Unreleased +## Version 2.9.1 – October 30th, 2018 ## + +This version brings us up to API version 2.16, but has no breaking changes + +- Add a GatewayTimeoutError class [PR](https://github.com/recurly/recurly-client-python/pull/267) + ## Version 2.9.0 – September 25th, 2018 ## This version brings us up to API version 2.15. diff --git a/recurly/__init__.py b/recurly/__init__.py index ca9ad704..892b6a76 100644 --- a/recurly/__init__.py +++ b/recurly/__init__.py @@ -21,7 +21,7 @@ """ -__version__ = '2.9.0' +__version__ = '2.9.1' __python_version__ = '.'.join(map(str, sys.version_info[:3])) cached_rate_limits = { @@ -45,7 +45,7 @@ API_KEY = None """The API key to use when authenticating API requests.""" -API_VERSION = '2.15' +API_VERSION = '2.16' """The API version to use when making API requests.""" CA_CERTS_FILE = None