diff --git a/CHANGELOG.md b/CHANGELOG.md index 40f17b6..2157d9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.7.1] - 2024-08-06 +### Fixed +- PLGMAG2V2-753: Fixed an issue where a coupon could be decremented multiple times on multiple calls to the 'Cancel' controller + +### Changed +- PLGMAG2V2-778: Coupons will now be canceled through the OrderService on order cancelation and will happen either through the Notification webhook request or when restoring the cart, depending on the type of transaction + ## [3.7.0] - 2024-07-05 ### Added - PLGMAG2V2-741: Added Manual Capture support for the Card payment, Visa, Mastercard and Maestro gateways. For more information about this feature, please check the [MultiSafepay Manual Capture documentation](https://docs.multisafepay.com/docs/manual-capture). diff --git a/Util/VersionUtil.php b/Util/VersionUtil.php index 51cdc1f..ab34220 100644 --- a/Util/VersionUtil.php +++ b/Util/VersionUtil.php @@ -63,7 +63,7 @@ public function __construct( */ public function getPluginVersion(): string { - return '3.7.0'; + return '3.7.1'; } /** diff --git a/composer.json b/composer.json index caea911..2957abb 100755 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { "name": "multisafepay/magento2-core", "description": "MultiSafepay core module for Magento 2", - "version": "3.7.0", + "version": "3.7.1", "require": { - "multisafepay/php-sdk": "^5.13", + "multisafepay/php-sdk": "^5.14", "nyholm/psr7": "^1.4", "psr/http-client": "^1.0", "magento/framework": "^102.0|^103.0",