diff --git a/CHANGELOG.md b/CHANGELOG.md index 544d5e8..90038ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,12 @@ Also includes brief product/shipping details in transaction comments. 1.3 - June 21, 2020 - Updated to SquareConnect SDK version 3.20200528.1 (Note: This is the last release of SquareConnect SDK that is compatible with PHP 5. Future versions will require PHP 7.1+, and will be integrated to the SquarePHP SDK (not SquareConnect). A version 2 of this module will be released to work with the new SDK, but this will also limit which Zen Cart versions the module is compatible with. If you are not using Zen Cart 1.5.6 or newer and PHP 7.1 or newer, now is the time to upgrade!) -1.4 - June 21, 2020 - Updated admin sidebar to show API/SDK version numbers for easy reference. +1.4 - June 21, 2020 - Updated admin sidebar to show API/SDK version numbers for easy reference. (only changed square.php) + +1.5 - June 22, 2020 - Added improvements to catching errors that occur during capture/void/refund. (only changed square.php) + + + --- diff --git a/files_to_upload/includes/modules/payment/square.php b/files_to_upload/includes/modules/payment/square.php index 14b9a3e..d23029b 100644 --- a/files_to_upload/includes/modules/payment/square.php +++ b/files_to_upload/includes/modules/payment/square.php @@ -10,7 +10,7 @@ * @package square * @copyright Copyright 2003-2020 Zen Cart Development Team * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 - * @version $Id: Author: Chris Brown Modified 2020-06-21 $ + * @version $Id: Author: Chris Brown Modified 2020-06-22 $ */ if (!defined('TABLE_SQUARE_PAYMENTS')) define('TABLE_SQUARE_PAYMENTS', DB_PREFIX . 'square_payments'); @@ -29,7 +29,7 @@ class square extends base /** * $moduleVersion is the plugin version number */ - public $moduleVersion = '1.4'; + public $moduleVersion = '1.5'; /** * API version this module was last updated to use */