diff --git a/CHANGELOG.md b/CHANGELOG.md index 32599f1b..6aac15fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [2.10.0] - 2021-08-27 ### Added - Added compatibility with Adobe Commerce Gift Wrapping plugin. +- Payment links can now be used for both order confirmation emails and order comment emails. ### Changed - Code refactored for order service methods. @@ -14,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed the resolution of payment icons to be more in line with Magento core payment icons - Added date picker field for Date of Birth checkout fields to further increase the consistency of input - Dropped support for Magento 2.2.x versions. -- Payment links can now be used for both order confirmation emails and order comment emails. +- Deleted unnecessary order savings for better performance ### Fixed - Fixed PHP Mess detector issues. diff --git a/Util/VersionUtil.php b/Util/VersionUtil.php index e39c4522..ed2b3c0b 100644 --- a/Util/VersionUtil.php +++ b/Util/VersionUtil.php @@ -56,7 +56,7 @@ public function __construct( */ public function getPluginVersion(): string { - return '2.11.0'; + return '2.12.0'; } /** diff --git a/composer.json b/composer.json index 41220cfc..1fa5ba5a 100755 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { "name": "multisafepay/magento2-core", "description": "MultiSafepay module for Magento 2", - "version": "2.9.0", + "version": "2.10.0", "require": { - "multisafepay/php-sdk": "^5.1", + "multisafepay/php-sdk": "^5.2", "php-http/guzzle6-adapter": "*", "guzzlehttp/psr7": "*", "http-interop/http-factory-guzzle": "^1.0",