diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c1d32d8..232e5fb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Recurly PHP Client Library CHANGELOG +## Version 2.2.2 (Oct 7th, 2013) + +* Fixed errors thrown due to empty XML strings #62 [beaudesigns](https://github.com/beaudesigns) + ## Version 2.2.1 (July 19th, 2013) * Fixed invalid XML errors when saving subscriptions with add-ons. diff --git a/lib/recurly/client.php b/lib/recurly/client.php index 6026a992..322817e7 100644 --- a/lib/recurly/client.php +++ b/lib/recurly/client.php @@ -34,7 +34,7 @@ class Recurly_Client */ private $_acceptLanguage = 'en-US'; - const API_CLIENT_VERSION = '2.2.1'; + const API_CLIENT_VERSION = '2.2.2'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';