From c8e9dce3d01d20b952283ca9131aa1079f7e9031 Mon Sep 17 00:00:00 2001 From: Lib Cat Date: Thu, 4 Apr 2024 17:48:38 +0000 Subject: [PATCH] 2.14.10 [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.9...2.14.10) **Merged Pull Requests** - Add net_terms_type to Invoices, Purchases, and Subscriptions [#806](https://github.com/recurly/recurly-client-php/pull/806) ([flaviomuller](https://github.com/flaviomuller)) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 11 +++++++++++ lib/recurly/client.php | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c3fbf1a1..936ccc72 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.9 +current_version = 2.14.10 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36784511..3051409d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [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) + + +**Merged Pull Requests** + +- Add net_terms_type to Invoices, Purchases, and Subscriptions [#806](https://github.com/recurly/recurly-client-php/pull/806) ([flaviomuller](https://github.com/flaviomuller)) + + + ## [2.14.9](https://github.com/recurly/recurly-client-php/tree/2.14.9) (2024-03-19) [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.8...2.14.9) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index 6ef22252..a4d1acc8 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.9'; + const API_CLIENT_VERSION = '2.14.10'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';