diff --git a/CHANGELOG b/CHANGELOG index 423209ef..56ad0a4c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ + +## Version 2.2.19 February 22, 2016 + +- Added `currency` attribute to the `BillingInfo` class + ## Version 2.2.18 February 11, 2016 - Add `mark_failed` API call to `Invoice` diff --git a/recurly/__init__.py b/recurly/__init__.py index e2f6e2f9..647e4d8f 100644 --- a/recurly/__init__.py +++ b/recurly/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '2.2.18' +__version__ = '2.2.19' __python_version__ = '.'.join(map(str, sys.version_info[:3])) USER_AGENT = 'recurly-python/%s; python %s' % (recurly.__version__, recurly.__python_version__)