Update for v2.1.19
This commit is contained in:
parent
f43c3bac6c
commit
c6e69e05e4
@ -1,3 +1,9 @@
|
||||
2.1.19 (2018-04-09)
|
||||
Simplified BitPay Magento configuration screen
|
||||
Updated PHP library to v2.2.20 (supporting BitPay's API after May 1st 2018)
|
||||
Support for Magento Marketplace: https://marketplace.magento.com/bitpay-bitpay-core.html
|
||||
|
||||
|
||||
2.1.18 (2018-03-16)
|
||||
Fixed dependencies in composer.json (#127)
|
||||
Fixed landing page after failure or expired payment (#124, #123, #117, #120)
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
<config>
|
||||
<modules>
|
||||
<Bitpay_Core>
|
||||
<version>2.1.18</version>
|
||||
<version>2.1.19</version>
|
||||
</Bitpay_Core>
|
||||
</modules>
|
||||
<frontend>
|
||||
|
||||
@ -11,7 +11,7 @@ date_default_timezone_set('America/New_York'); // Main Office is in Eastern Time
|
||||
/**
|
||||
* Various Configuration Settings
|
||||
*/
|
||||
$version = '2.1.18';
|
||||
$version = '2.1.19';
|
||||
$vendorDir = __DIR__ . '/../vendor';
|
||||
$distDir = __DIR__ . '/../build/dist';
|
||||
$tmpDistDir = $distDir . '/tmp'; // Files will be placed here temporarly so we can zip/tar them.
|
||||
@ -95,7 +95,7 @@ $xml->addChild('dependencies');
|
||||
|
||||
$requiredNode = $xml->addChild('required', 'php');
|
||||
$requiredNode->addAttribute('php_min', '5.4.0');
|
||||
$requiredNode->addAttribute('php_max', '6.0.0');
|
||||
$requiredNode->addAttribute('php_max', '7.2.0');
|
||||
|
||||
$extensionsNode = $xml->addChild('extensions');
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user