diff --git a/CHANGELOG.md b/CHANGELOG.md index 070f2caf1..2182b7422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Changelog ========= +v1.1.0 +------ + +* Adds support for multiple installments plans (2-, 3- and 4-installment plans) on PrestaShop 1.7+ +* Adds order_total as a template variable for displayPayment +* Various fixes to comply with PSR1/PSR2 and PrestaShop validator +* Preparation for marketplace validation & release + + v1.0.1 ------ diff --git a/alma.php b/alma.php index c18230e17..161fa85f4 100644 --- a/alma.php +++ b/alma.php @@ -32,7 +32,7 @@ class Alma extends PaymentModule { - const VERSION = '1.0.2'; + const VERSION = '1.1.0'; public $_path; @@ -40,7 +40,7 @@ public function __construct() { $this->name = 'alma'; $this->tab = 'payments_gateways'; - $this->version = '1.0.2'; + $this->version = '1.1.0'; $this->author = 'Alma'; $this->need_instance = false; $this->bootstrap = true;