diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5e74ee7e..c3fbf1a1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.8 +current_version = 2.14.9 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53501c7b..36784511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [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) + + +**Merged Pull Requests** + +- Add card_network_preference field to v2 [#805](https://github.com/recurly/recurly-client-php/pull/805) ([gilv93](https://github.com/gilv93)) + + + ## [2.14.8](https://github.com/recurly/recurly-client-php/tree/2.14.8) (2024-03-13) [Full Changelog](https://github.com/recurly/recurly-client-php/compare/2.14.7...2.14.8) diff --git a/lib/recurly/client.php b/lib/recurly/client.php index cfd74e65..6ef22252 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.8'; + const API_CLIENT_VERSION = '2.14.9'; const DEFAULT_ENCODING = 'UTF-8'; const GET = 'GET';