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';