diff --git a/buckaroo3.php b/buckaroo3.php index 9d20e7ed..dedef92d 100644 --- a/buckaroo3.php +++ b/buckaroo3.php @@ -46,7 +46,7 @@ public function __construct() { $this->name = 'buckaroo3'; $this->tab = 'payments_gateways'; - $this->version = '4.0.1'; + $this->version = '4.1.0'; $this->author = 'Buckaroo'; $this->need_instance = 1; $this->bootstrap = true; @@ -72,7 +72,7 @@ public function __construct() $this->displayName = (new RawPaymentMethodRepository())->getPaymentMethodsLabel($response->payment_method); } else { - $this->displayName = $this->l('Buckaroo Payments (v 4.0.1)'); + $this->displayName = $this->l('Buckaroo Payments (v 4.1.0)'); } } diff --git a/config.xml b/config.xml index 7d2ed490..d9598a3e 100644 --- a/config.xml +++ b/config.xml @@ -1,8 +1,8 @@ buckaroo3 - - + + diff --git a/upgrade/upgrade-4.1.php b/upgrade/upgrade-4.1.0.php similarity index 95% rename from upgrade/upgrade-4.1.php rename to upgrade/upgrade-4.1.0.php index a101324f..1c0845d9 100644 --- a/upgrade/upgrade-4.1.php +++ b/upgrade/upgrade-4.1.0.php @@ -21,7 +21,7 @@ /** * @return mixed */ -function upgrade_module_4_1($object) +function upgrade_module_4_1_0($object) { $sql = 'DELETE FROM ' . _DB_PREFIX_ . 'bk_ordering WHERE country_id IS NOT NULL'; Db::getInstance()->execute($sql);