Skip to content

Commit

Permalink
Merge pull request #6 from PrestaShopCorp/feature/upgrade-version
Browse files Browse the repository at this point in the history
chore: update version
  • Loading branch information
jokesterfr authored Jul 17, 2024
2 parents 86e2cf5 + 2ee821f commit eeccf7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.PHONY: help clean build version zip
VERSION ?= v1.0.4
VERSION ?= v1.1.0
MODULE = ps_accounts
PACKAGE ?= ${MODULE}_mock-${VERSION}

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>ps_accounts</name>
<displayName><![CDATA[PrestaShop Accounts Mock]]></displayName>
<version><![CDATA[1.0.4]]></version>
<version><![CDATA[1.1.0]]></version>
<description><![CDATA[PS Accounts Mock.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[administration]]></tab>
Expand Down
6 changes: 3 additions & 3 deletions ps_accounts.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Ps_accounts extends Module
/**
* @var string
*/
const VERSION = '1.0.4';
const VERSION = '1.1.0';

/**
* @var \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer
Expand All @@ -19,11 +19,11 @@ class Ps_accounts extends Module
public function __construct()
{
$this->name = 'ps_accounts';
$this->version = '1.0.4';
$this->version = '1.1.0';
$this->author = 'CloudSync team';
$this->need_instance = 0;
$this->ps_versions_compliancy = [
'min' => '1.6.1.24',
'min' => '1.6.1.11',
'max' => '99.99.99',
];
$this->bootstrap = false;
Expand Down

0 comments on commit eeccf7c

Please sign in to comment.