From 24f7d88a5ceabc84e5830e6ac0e58ceec3a06caf Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Wed, 2 Mar 2016 15:32:12 +0100 Subject: [PATCH] set version to 0.9.35-rc1 for upcoming release candidate Signed-off-by: Michael Kaufmann (d00p) --- install/froxlor.sql | 2 +- install/updates/froxlor/0.9/update_0.9.inc.php | 8 ++++++++ lib/version.inc.php | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/install/froxlor.sql b/install/froxlor.sql index cc0dd2a4..81ac24e8 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -556,7 +556,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES ('panel', 'password_numeric', '0'), ('panel', 'password_special_char_required', '0'), ('panel', 'password_special_char', '!?<>ยง$%+#=@'), - ('panel', 'version', '0.9.35-dev7'); + ('panel', 'version', '0.9.35-rc1'); DROP TABLE IF EXISTS `panel_tasks`; diff --git a/install/updates/froxlor/0.9/update_0.9.inc.php b/install/updates/froxlor/0.9/update_0.9.inc.php index 7f2f9ff9..dda0720f 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -3136,3 +3136,11 @@ if (isFroxlorVersion('0.9.35-dev6')) { updateToVersion('0.9.35-dev7'); } + +if (isFroxlorVersion('0.9.35-dev7')) { + + showUpdateStep("Updating from 0.9.35-dev7 to 0.9.35-rc1"); + lastStepStatus(0); + + updateToVersion('0.9.35-rc1'); +} diff --git a/lib/version.inc.php b/lib/version.inc.php index ccc89711..05e6952c 100644 --- a/lib/version.inc.php +++ b/lib/version.inc.php @@ -16,7 +16,7 @@ */ // Main version variable -$version = '0.9.35-dev7'; +$version = '0.9.35-rc1'; // Database version (unused, old stuff from SysCP) $dbversion = '2';