Skip to content

Commit

Permalink
Release of 5.12.0 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit authored Dec 1, 2023
1 parent 16457e0 commit 9891e4a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.12.0] - 2023-12-01
### Added
+ PHPSDK-139: Add support to set var1, var2 and var3, within the OrderRequest object
+ PHPSDK-140: Add support to set custom_info, within the OrderRequest object, thanks to @DaanDeSmedt

## [5.11.2] - 2023-10-13
### Fixed
+ PHPSDK-134: Fix errors when only reference is set, within the CustomerDetails object
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "MultiSafepay PHP SDK",
"type": "library",
"license": "MIT",
"version": "5.11.2",
"version": "5.12.0",
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
Expand Down
3 changes: 0 additions & 3 deletions src/Api/Transactions/OrderRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,6 @@ public function addCustomInfo(CustomInfo $customInfo): OrderRequest
return $this;
}


/**
* @param string $var1
* @return OrderRequest
Expand Down Expand Up @@ -519,8 +518,6 @@ public function getVar3(): ?string
return $this->var3;
}



/**
* @return array
* phpcs:disable ObjectCalisthenics.Files.FunctionLength
Expand Down
2 changes: 1 addition & 1 deletion src/Util/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
class Version
{
public const SDK_VERSION = '5.11.2';
public const SDK_VERSION = '5.12.0';

/**
* @var Version
Expand Down

0 comments on commit 9891e4a

Please sign in to comment.