Skip to content

Commit ae559c6

Browse files
committed
Fixed and update version to 2.0.2
1 parent 720483f commit ae559c6

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
* Updated php required version to 7.4
3+
* Fixed typo for php version 7.4
4+
15
## 2.0.1
26
* Fixed #27 - build product data
37

Model/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Config implements PayUConfigInterface
1919
/**
2020
* Current Plugin Version
2121
*/
22-
const PLUGIN_VERSION = '2.0.1';
22+
const PLUGIN_VERSION = '2.0.2';
2323

2424
/**
2525
* @var \OpenPayU_Configuration

Model/RepayOrderResolverAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ abstract class RepayOrderResolverAbstract implements RepayOrderResolverInterface
2424
private CommandPoolInterface $commandPool;
2525

2626
public function __construct(
27-
CommandPoolInterface $commandPool,
27+
CommandPoolInterface $commandPool
2828
)
2929
{
3030
$this->commandPool = $commandPool;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"payu magento 2.4"
1111
],
1212
"type": "magento2-module",
13-
"version": "2.0.1",
13+
"version": "2.0.2",
1414
"license": "apache-2.0",
1515
"require": {
16-
"php": ">=7.3",
16+
"php": ">=7.4",
1717
"ext-json": "*",
1818
"magento/module-sales": "103.0.*"
1919
},

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3-
<module name="PayU_PaymentGateway" setup_version="2.0.1">
3+
<module name="PayU_PaymentGateway" setup_version="2.0.2">
44
<sequence>
55
<module name="Magento_Customer" />
66
<module name="Magento_Sales"/>

0 commit comments

Comments
 (0)