Skip to content

Commit

Permalink
Merge pull request #32 from PrestaShop/dev
Browse files Browse the repository at this point in the history
Release 4.1.1
  • Loading branch information
matthieu-rolland authored Oct 4, 2019
2 parents d47bd03 + fcbdfbc commit 13fb60d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion blockreassurance.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
exit;
}

$autoloadPath = __DIR__ . '/vendor/autoload.php';
if (file_exists($autoloadPath)) {
require_once $autoloadPath;
}

use PrestaShop\PrestaShop\Core\Module\WidgetInterface;

class blockreassurance extends Module implements WidgetInterface
Expand Down Expand Up @@ -94,7 +99,7 @@ public function __construct()
// Settings
$this->name = 'blockreassurance';
$this->tab = 'seo';
$this->version = '4.1.0';
$this->version = '4.1.1';
$this->author = 'PrestaShop';
$this->need_instance = 0;
$this->module_key = '938b96386d4d79aa7cb891439cb0ef11';
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>blockreassurance</name>
<displayName><![CDATA[Customer reassurance block]]></displayName>
<version><![CDATA[4.1.0]]></version>
<version><![CDATA[4.1.1]]></version>
<description><![CDATA[Adds an information block aimed at offering helpful information to reassure customers that your store is trustworthy.]]></description>
<author><![CDATA[PrestaShop]]></author>
<is_configurable>1</is_configurable>
Expand Down

0 comments on commit 13fb60d

Please sign in to comment.