Skip to content

Commit

Permalink
Point release version bump 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryAllan committed Mar 26, 2022
1 parent f6a49fd commit d96122d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 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.45";
UPDATE `settings` SET `version` = "1.46";
UPDATE `settings` SET `dbversion` = 25;
7 changes: 7 additions & 0 deletions functions/upgrade_queries.php
Expand Up @@ -975,6 +975,13 @@
$upgrade_queries["1.45.25"][] = "-- Version update";
$upgrade_queries["1.45.25"][] = "UPDATE `settings` set `version` = '1.45';";

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


// 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.45"); //decimal release version e.g 1.32
define("VERSION", "1.46"); //decimal release version e.g 1.32
/* set latest version */
define("VERSION_VISIBLE", "1.4.5"); //visible version in footer e.g 1.3.2
define("VERSION_VISIBLE", "1.4.6"); //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
8 changes: 4 additions & 4 deletions misc/CHANGELOG
@@ -1,13 +1,13 @@
== 1.4.6

Security Fixes:
----------------------------
+ Incorrect privilege assignments (#3506);

Bugfixes:
----------------------------
+ Require unique subnets not working as intended (#3529);

Security Fixes:
----------------------------
+ Incorrect privilege assignments (#3506);

== 1.4.5

Bugfixes:
Expand Down

0 comments on commit d96122d

Please sign in to comment.