Skip to content

Commit

Permalink
release v8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jjgallardo-payvision committed Jun 9, 2021
1 parent 0e595a8 commit bbaa484
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "payvision/payvision-sdk-php",
"description": "Payvision PHP SDK",
"type": "library",
"version": "8.1.0",
"version": "8.2.0",
"license": "MIT",
"require": {
"php": "~7.1.3||~7.2.5||~7.3.0||~7.4.0",
Expand Down
7 changes: 4 additions & 3 deletions src/etc/brands.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<!--
~ @copyright Copyright (c) 2018-2019 Payvision B.V. (https://www.payvision.com/)
~ @license see LICENCE.TXT
~ @see: https://developers.acehubpaymentservices.com/reference#brands
-->
<brands xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./brands.xsd">
Expand Down Expand Up @@ -78,12 +79,12 @@
<issuer id="110">
<description>Bunq</description>
</issuer>
<issuer id="120">
<description>Moneyou</description>
</issuer>
<issuer id="130">
<description>Handelsbanken</description>
</issuer>
<issuer id="140">
<description>Revolut</description>
</issuer>
</issuers>
</brand>
<brand id="3020">
Expand Down
2 changes: 1 addition & 1 deletion tests/Test/Unit/Infrastructure/ApiConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public function testGlobalRequestHeaders(): void
{
$this->subject->setGlobalRequestHeaders([
RequestHeaderCollection::HEADER_PLUGIN_NAME => 'PHP SDK',
RequestHeaderCollection::HEADER_PLUGIN_DETAILS => 'Version 8.1.0',
RequestHeaderCollection::HEADER_PLUGIN_DETAILS => 'Version 8.2.0',
]);
self::assertCount(2, $this->subject->getGlobalRequestHeaders());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function testAddRequestHeaderCollectionSuccessfully(): void
$testHeaders = [
RequestHeaderCollection::HEADER_EXECUTION_MODE => 'test',
RequestHeaderCollection::HEADER_PLUGIN_NAME => 'PHP SDK',
RequestHeaderCollection::HEADER_PLUGIN_DETAILS => 'Version 8.1.0',
RequestHeaderCollection::HEADER_PLUGIN_DETAILS => 'Version 8.2.0',
];

foreach ($testHeaders as $header => $value) {
Expand Down

0 comments on commit bbaa484

Please sign in to comment.