File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) and this project adheres
6
6
to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 3.4.1] ( https://github.com/unzerdev/php-sdk/compare/3.4.0..3.4.1 )
9
+
10
+ Revert deprecation of Sepa Direct Debit type.
11
+
12
+ ### Changed
13
+ * Revert deprecation of ` \UnzerSDK\Resources\PaymentTypes\SepaDirectDebit ` .
14
+
8
15
## [ 3.4.0] ( https://github.com/unzerdev/php-sdk/compare/3.3.0..3.4.0 )
9
16
10
17
This version adds support for Paylater Direct Debit payment method.
@@ -18,12 +25,12 @@ This version adds support for Paylater Direct Debit payment method.
18
25
* Add bank account information to ` \UnzerSDK\Resources\PaymentTypes\Sofort ` class.
19
26
20
27
### Changed
21
- * Allow ' null' for setters in ' \UnzerSDK\Traits\HasAccountInformation' trait to avoid error when e.g. API response contains empty bic.
28
+ * Allow ` null ` for setters in ` \UnzerSDK\Traits\HasAccountInformation ` trait to avoid error when e.g. API response contains empty bic.
22
29
* Apple Pay example: Moved merchant identifier to constant in ` _enableExamples.php ` where it can be configured.
23
30
24
31
### Deprecated
25
- * ` \UnzerSDK\Resources\PaymentTypes\SepaDirectDebit ` , please use ` \UnzerSDK\Resources\PaymentTypes\PaylaterDirectDebit' ` .
26
- * ` \UnzerSDK\Resources\PaymentTypes\SepaDirectDebitSecured ` , please use ` \UnzerSDK\Resources\PaymentTypes\PaylaterDirectDebit' ` .
32
+ * ` \UnzerSDK\Resources\PaymentTypes\SepaDirectDebit ` , please use ` \UnzerSDK\Resources\PaymentTypes\PaylaterDirectDebit ` .
33
+ * ` \UnzerSDK\Resources\PaymentTypes\SepaDirectDebitSecured ` , please use ` \UnzerSDK\Resources\PaymentTypes\PaylaterDirectDebit ` .
27
34
28
35
## [ 3.3.0] ( https://github.com/unzerdev/php-sdk/compare/3.2.0..3.3.0 )
29
36
### Added
Original file line number Diff line number Diff line change 12
12
use UnzerSDK \Traits \CanPayout ;
13
13
use UnzerSDK \Traits \CanRecur ;
14
14
15
- /** @deprecated please use PaylaterDirectDebit instead.
16
- */
17
15
class SepaDirectDebit extends BasePaymentType
18
16
{
19
17
use CanDirectCharge;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Unzer implements
53
53
public const BASE_URL = 'api.unzer.com ' ;
54
54
public const API_VERSION = 'v1 ' ;
55
55
public const SDK_TYPE = 'UnzerPHP ' ;
56
- public const SDK_VERSION = '3.4.0 ' ;
56
+ public const SDK_VERSION = '3.4.1 ' ;
57
57
58
58
/** @var string $key */
59
59
private $ key ;
You can’t perform that action at this time.
0 commit comments