From 9d3dec11604b4098caf595d26d184f3b285dd5dc Mon Sep 17 00:00:00 2001 From: Lib Cat Date: Wed, 3 Jul 2024 19:11:18 +0000 Subject: [PATCH] 2.14.11 [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.10...2.14.11) **Merged Pull Requests** - GET external_subscription by external_id - V2 PHP [#816](https://github.com/recurly/recurly-client-php/pull/816) ([paulorbpinho-fullstacklabs](https://github.com/paulorbpinho-fullstacklabs)) - Add taxable address sources to business entity and adjustment [#815](https://github.com/recurly/recurly-client-php/pull/815) ([ELepolt](https://github.com/ELepolt)) - SubscriptionAddon: fix call to undefined method Recurly_SubscriptionAddOn::__valuesString() [#811](https://github.com/recurly/recurly-client-php/pull/811) ([glaubinix](https://github.com/glaubinix)) - Added support for `proration_settings` for updating subscriptions [#809](https://github.com/recurly/recurly-client-php/pull/809) ([csampson](https://github.com/csampson)) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 14 ++++++++++++++ lib/recurly/client.php | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 936ccc72..fdfbb127 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.10 +current_version = 2.14.11 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3051409d..de5b5c7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.14.11](https://github.com/recurly/recurly-client-php/tree/2.14.11) (2024-07-03) + +[Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.10...2.14.11) + + +**Merged Pull Requests** + +- GET external_subscription by external_id - V2 PHP [#816](https://github.com/recurly/recurly-client-php/pull/816) ([paulorbpinho-fullstacklabs](https://github.com/paulorbpinho-fullstacklabs)) +- Add taxable address sources to business entity and adjustment [#815](https://github.com/recurly/recurly-client-php/pull/815) ([ELepolt](https://github.com/ELepolt)) +- SubscriptionAddon: fix call to undefined method Recurly_SubscriptionAddOn::__valuesString() [#811](https://github.com/recurly/recurly-client-php/pull/811) ([glaubinix](https://github.com/glaubinix)) +- Added support for `proration_settings` for updating subscriptions [#809](https://github.com/recurly/recurly-client-php/pull/809) ([csampson](https://github.com/csampson)) + + + ## [2.14.10](https://github.com/recurly/recurly-client-php/tree/2.14.10) (2024-04-04) [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.9...2.14.10) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index a4d1acc8..51536e8a 100644 --- a/lib/recurly/client.php +++ b/lib/recurly/client.php @@ -51,7 +51,7 @@ class Recurly_Client */ private static $apiUrl = 'https://%s.recurly.com/v2'; - const API_CLIENT_VERSION = '2.14.10'; + const API_CLIENT_VERSION = '2.14.11'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';