From b2636b8b1affde9fb38d9348365b57c6f0a0dd31 Mon Sep 17 00:00:00 2001 From: Veaceslav Medvedev Date: Mon, 1 Jul 2019 11:11:26 +0200 Subject: [PATCH] Bump version 2.4 (#355) * Bump client version to 2.4 * Update CHANGELOG --- CHANGELOG.md | 6 +++++- src/Client.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68cd32108..dc60c6e93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,9 +16,13 @@ Security - in case of vulnerabilities. ## [Unreleased] -_TBD_ +## [2.4.0] 2019-07-01 + +### Fixed +- [x] Added missing options in Client constructor. ### Added +- [x] Added custom fields to `Plan` - [x] Added new write-only property to set payment instrument from `token` for the `Customer` Resource. - [x] Added new property to `RiskMetadata`: `region` - [x] Added new properties to `Customer`: `averageValue`, `paymentCount`, `lastPaymentTime` diff --git a/src/Client.php b/src/Client.php index 7414311c0..149f6d843 100644 --- a/src/Client.php +++ b/src/Client.php @@ -97,7 +97,7 @@ final class Client public const CURRENT_VERSION = 'v2.1'; - public const SDK_VERSION = '2.3.0'; + public const SDK_VERSION = '2.4.0'; private static $services = [ 'authenticationOptions' => Services\AuthenticationOptionsService::class,