Skip to content

Commit

Permalink
Merge pull request #303 from minzords/stable
Browse files Browse the repository at this point in the history
🔖 1.6.4
  • Loading branch information
minzords committed Jun 5, 2024
2 parents 05d0d78 + 13e06ba commit 689edd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions inc/define.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
// Last version of GLPI only for plugin compatibility
define('GLPI_VERSION', '9.5.13');

define('ITSM_VERSION', '1.6.3');
define('ITSM_VERSION', '1.6.4');
if (substr(ITSM_VERSION, -4) === '-dev') {
//for dev version
define('ITSM_PREVER', str_replace('-dev', '', ITSM_VERSION));
Expand All @@ -44,7 +44,7 @@
);
} else {
//for stable version
define("ITSM_SCHEMA_VERSION", '1.6.3');
define("ITSM_SCHEMA_VERSION", '1.6.4');
}

// Current version of ITSM-NG
Expand Down
3 changes: 2 additions & 1 deletion inc/update.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,10 @@ public function doUpdates($current_version = null) {
case "1.6.0":
case "1.6.1":
case "1.6.2":
case "1.6.3":
include_once "{$updir}itsm_update_160_161.php";
update160to161();
continue;
break;

case ITSM_VERSION:
case ITSM_SCHEMA_VERSION:
Expand Down

0 comments on commit 689edd9

Please sign in to comment.