From ab0d030474765cddb68bbd678067074ad18dd658 Mon Sep 17 00:00:00 2001 From: Recurly integrations Date: Mon, 6 Feb 2023 18:02:18 +0000 Subject: [PATCH] 2.12.37 [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.12.36...2.12.37) **Merged Pull Requests** - Add Custom Fields on Adjustments [#740](https://github.com/recurly/recurly-client-php/pull/740) ([ngleiser](https://github.com/ngleiser)) - Added decline code to transaction error [#737](https://github.com/recurly/recurly-client-php/pull/737) ([arzitney](https://github.com/arzitney)) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 12 ++++++++++++ lib/recurly/client.php | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6d492bee..13164e2d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.12.36 +current_version = 2.12.37 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 276484be..15e680a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.12.37](https://github.com/recurly/recurly-client-php/tree/2.12.37) (2023-02-06) + +[Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.12.36...2.12.37) + + +**Merged Pull Requests** + +- Add Custom Fields on Adjustments [#740](https://github.com/recurly/recurly-client-php/pull/740) ([ngleiser](https://github.com/ngleiser)) +- Added decline code to transaction error [#737](https://github.com/recurly/recurly-client-php/pull/737) ([arzitney](https://github.com/arzitney)) + + + ## [2.12.36](https://github.com/recurly/recurly-client-php/tree/2.12.36) (2023-01-11) [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.12.35...2.12.36) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index 9193652d..cfba708c 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.12.36'; + const API_CLIENT_VERSION = '2.12.37'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';