Skip to content

Commit

Permalink
Point release version bump 1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryAllan committed Apr 24, 2022
1 parent 50e36b9 commit 8ef9966
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion db/SCHEMA.sql
Expand Up @@ -994,5 +994,5 @@ CREATE TABLE `routing_subnets` (
# Dump of table -- for autofix comment, leave as it is
# ------------------------------------------------------------

UPDATE `settings` SET `version` = "1.46";
UPDATE `settings` SET `version` = "1.47";
UPDATE `settings` SET `dbversion` = 25;
6 changes: 6 additions & 0 deletions functions/upgrade_queries.php
Expand Up @@ -982,6 +982,12 @@
$upgrade_queries["1.46.25"][] = "-- Version update";
$upgrade_queries["1.46.25"][] = "UPDATE `settings` set `version` = '1.46';";

#
# Version 1.47.25 queries
#
$upgrade_queries["1.47.25"] = [];
$upgrade_queries["1.47.25"][] = "-- Version update";
$upgrade_queries["1.47.25"][] = "UPDATE `settings` set `version` = '1.47';";

// output if required
if(!defined('VERSION') && php_sapi_name()=="cli") {
Expand Down
4 changes: 2 additions & 2 deletions functions/version.php
@@ -1,8 +1,8 @@
<?php
/* set latest version */
define("VERSION", "1.46"); //decimal release version e.g 1.32
define("VERSION", "1.47"); //decimal release version e.g 1.32
/* set latest version */
define("VERSION_VISIBLE", "1.4.6"); //visible version in footer e.g 1.3.2
define("VERSION_VISIBLE", "1.4.7"); //visible version in footer e.g 1.3.2
/* set latest revision */
define("REVISION", "031"); //increment on static content changes (js/css) or point releases to avoid caching issues
/* set last possible upgrade */
Expand Down

0 comments on commit 8ef9966

Please sign in to comment.