From 8ac834e2a5f96f4fac8a30c61fcb33b7427782ae Mon Sep 17 00:00:00 2001 From: Dick Fickling Date: Wed, 25 Jun 2014 11:51:00 -0700 Subject: [PATCH] Bump version --- CHANGELOG | 4 +++- recurly/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9d7dda11..e04dcf3f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,11 @@ +## Version 2.2.2 June 25, 2014 +- Added subscription preview: `subscription.preview()` + ## Version 2.2.1 June 6, 2014 - Added tests for `invoice_description` ## Version 2.2.0 May 14, 2014 -- Added subscription preview: `subscription.preview()` - Added tax details to adjustments: `adjustment.tax_details` - Removed `taxable` support on adjustments - Added `tax_exempt` to accounts, adjustments and plans diff --git a/recurly/__init__.py b/recurly/__init__.py index 4ee26a32..3ff6bfd1 100644 --- a/recurly/__init__.py +++ b/recurly/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '2.2.1' +__version__ = '2.2.2' BASE_URI = 'https://%s.recurly.com/v2/' """The API endpoint to send requests to."""