diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d635c4d6..45693348b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +v1.3.0 +------ + +* Compatibility with the Advance EU Compliance module (PrestaShop 1.6) +* Round prices using PrestaShop's internal method, to comply with merchant's configured preferences +* Include cart contents & shipping information in payment data to improve customer UX & fraud detection + v1.2.7 ------ diff --git a/alma/alma.php b/alma/alma.php index a4edaa46f..de6bc28b4 100644 --- a/alma/alma.php +++ b/alma/alma.php @@ -32,7 +32,7 @@ class Alma extends PaymentModule { - const VERSION = '1.2.7'; + const VERSION = '1.3.0'; public $_path; public $local_path; @@ -41,7 +41,7 @@ public function __construct() { $this->name = 'alma'; $this->tab = 'payments_gateways'; - $this->version = '1.2.7'; + $this->version = '1.3.0'; $this->author = 'Alma'; $this->need_instance = false; $this->bootstrap = true;