diff --git a/phpunit/0_Install/FusinvDB.php b/phpunit/0_Install/FusinvDB.php index 897b9cd34e..72902e7e93 100644 --- a/phpunit/0_Install/FusinvDB.php +++ b/phpunit/0_Install/FusinvDB.php @@ -277,7 +277,7 @@ public function checkInstall($pluginname='', $when='') { $result = $DB->query($query); $this->assertEquals($DB->numrows($result), 1, "type 'version' not added in config"); $data = $DB->fetch_assoc($result); - $this->assertEquals($data['value'], '0.90+1.2', "Field 'version' not with right version"); + $this->assertEquals($data['value'], '0.90+1.3', "Field 'version' not with right version"); $query = "SELECT `id` FROM `glpi_plugin_fusioninventory_configs` WHERE `type`='otherserial'"; diff --git a/setup.php b/setup.php index 197dc1b6e3..623a3862a2 100644 --- a/setup.php +++ b/setup.php @@ -40,7 +40,7 @@ ------------------------------------------------------------------------ */ -define ("PLUGIN_FUSIONINVENTORY_VERSION", "0.90+1.2"); +define ("PLUGIN_FUSIONINVENTORY_VERSION", "0.90+1.3"); // Used for use config values in 'cache' $PF_CONFIG = array(); @@ -50,7 +50,7 @@ define ("PLUGIN_FUSIONINVENTORY_XML", ''); define ("PLUGIN_FUSIONINVENTORY_OFFICIAL_RELEASE", "0"); -define ("PLUGIN_FUSIONINVENTORY_REALVERSION", "0.90+1.2 SNAPSHOT"); +define ("PLUGIN_FUSIONINVENTORY_REALVERSION", "0.90+1.3 SNAPSHOT"); include_once(GLPI_ROOT."/inc/includes.php"); include_once( GLPI_ROOT . "/plugins/fusioninventory/lib/autoload.php");