Skip to content

Commit

Permalink
Merge pull request #20 from PrestaShop/update-module-version
Browse files Browse the repository at this point in the history
Change version number for release
  • Loading branch information
mflasquin authored Jul 27, 2023
2 parents a14d94d + c03d4ad commit ad366da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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>keycloak_connector_demo</name>
<displayName><![CDATA[Keycloak OAuth2 connector demo]]></displayName>
<version><![CDATA[1.0.2]]></version>
<version><![CDATA[1.0.3]]></version>
<description><![CDATA[Demo module of how to use Keycloak as OAuth2 Authentication Server for the new API]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[]]></tab>
Expand Down
4 changes: 2 additions & 2 deletions keycloak_connector_demo.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ public function __construct()
{
$this->name = 'keycloak_connector_demo';
$this->displayName = 'Keycloak OAuth2 connector demo';
$this->version = '1.0.2';
$this->version = '1.0.3';
$this->author = 'PrestaShop';
$this->description = 'Demo module of how to use Keycloak as OAuth2 Authentication Server for the new API';
$this->need_instance = 0;
$this->bootstrap = true;
$this->ps_versions_compliancy = ['min' => '8.0.0', 'max' => _PS_VERSION_];
$this->ps_versions_compliancy = ['min' => '9.0.0', 'max' => _PS_VERSION_];
parent::__construct();
}

Expand Down

0 comments on commit ad366da

Please sign in to comment.