Skip to content

Commit 9891e4a

Browse files
authored
Release of 5.12.0 (#341)
1 parent 16457e0 commit 9891e4a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.12.0] - 2023-12-01
10+
### Added
11+
+ PHPSDK-139: Add support to set var1, var2 and var3, within the OrderRequest object
12+
+ PHPSDK-140: Add support to set custom_info, within the OrderRequest object, thanks to @DaanDeSmedt
13+
914
## [5.11.2] - 2023-10-13
1015
### Fixed
1116
+ PHPSDK-134: Fix errors when only reference is set, within the CustomerDetails object

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "MultiSafepay PHP SDK",
44
"type": "library",
55
"license": "MIT",
6-
"version": "5.11.2",
6+
"version": "5.12.0",
77
"require": {
88
"php": "^7.2|^8.0",
99
"ext-json": "*",

src/Api/Transactions/OrderRequest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ public function addCustomInfo(CustomInfo $customInfo): OrderRequest
464464
return $this;
465465
}
466466

467-
468467
/**
469468
* @param string $var1
470469
* @return OrderRequest
@@ -519,8 +518,6 @@ public function getVar3(): ?string
519518
return $this->var3;
520519
}
521520

522-
523-
524521
/**
525522
* @return array
526523
* phpcs:disable ObjectCalisthenics.Files.FunctionLength

src/Util/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
class Version
1919
{
20-
public const SDK_VERSION = '5.11.2';
20+
public const SDK_VERSION = '5.12.0';
2121

2222
/**
2323
* @var Version

0 commit comments

Comments
 (0)