From d3a494f78d83da7ca24b06af44da84ff97c62e84 Mon Sep 17 00:00:00 2001 From: Lib Cat Date: Wed, 21 Aug 2024 21:47:50 +0000 Subject: [PATCH] 2.14.12 [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.11...2.14.12) **Merged Pull Requests** - Added support for refunding invoices and line items [#818](https://github.com/recurly/recurly-client-php/pull/818) ([andcoca](https://github.com/andcoca)) --- .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 fdfbb127..2ef6f99a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.11 +current_version = 2.14.12 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index de5b5c7b..283bb976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [2.14.12](https://github.com/recurly/recurly-client-php/tree/2.14.12) (2024-08-21) + +[Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.11...2.14.12) + + +**Merged Pull Requests** + +- Added support for refunding invoices and line items [#818](https://github.com/recurly/recurly-client-php/pull/818) ([andcoca](https://github.com/andcoca)) + + + ## [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) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index 51536e8a..fcf6b881 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.11'; + const API_CLIENT_VERSION = '2.14.12'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';