From cfb473b3e0024c20393a055120df3b560f7e7831 Mon Sep 17 00:00:00 2001 From: Aaron Suarez Date: Mon, 10 Sep 2018 17:50:15 -0500 Subject: [PATCH 1/2] Bump to API version 2.15 --- lib/recurly/client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index 1f2fb8ee..bfc26c8d 100644 --- a/lib/recurly/client.php +++ b/lib/recurly/client.php @@ -27,7 +27,7 @@ class Recurly_Client /** * API Version */ - public static $apiVersion = '2.14'; + public static $apiVersion = '2.15'; /** * The path to your CA certs. Use only if needed (if you can't fix libcurl/php). From 5dc356449ac468e511dc2897fc0a077be9512e05 Mon Sep 17 00:00:00 2001 From: Aaron Suarez Date: Tue, 25 Sep 2018 13:20:33 -0500 Subject: [PATCH 2/2] Bump to version 2.10.5 --- CHANGELOG.md | 8 ++++++++ lib/recurly/client.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5069fae9..70a93fc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Recurly PHP Client Library CHANGELOG +## Version 2.10.5 (September 25th, 2018) + +This release will upgrade us to API version 2.15. There are no breaking changes. + +* Added `scripts` folder [364](https://github.com/recurly/recurly-client-php/pull/364) +* Provide a correct recurly code when responding with a 404 [366](https://github.com/recurly/recurly-client-php/pull/366) +* Add support for more webhooks [368](https://github.com/recurly/recurly-client-php/pull/368) + ## Version 2.10.4 (August 21st, 2018) This release will upgrade us to API version 2.14. There are no breaking changes. diff --git a/lib/recurly/client.php b/lib/recurly/client.php index bfc26c8d..ab61855d 100644 --- a/lib/recurly/client.php +++ b/lib/recurly/client.php @@ -44,7 +44,7 @@ class Recurly_Client */ private $_acceptLanguage = 'en-US'; - const API_CLIENT_VERSION = '2.10.4'; + const API_CLIENT_VERSION = '2.10.5'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';