From 35e14fde14c06525064a045c6c163af1bf9bdb18 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Mon, 27 May 2019 11:47:58 +0200 Subject: [PATCH] set version to 0.10.0-rc2 for second release candidate Signed-off-by: Michael Kaufmann --- install/froxlor.sql | 2 +- install/updates/froxlor/0.10/update_0.10.inc.php | 4 ++++ lib/Froxlor/Froxlor.php | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/install/froxlor.sql b/install/froxlor.sql index 127fa073..ec917791 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -680,7 +680,7 @@ opcache.interned_strings_buffer'), ('panel', 'password_special_char', '!?<>ยง$%+#=@'), ('panel', 'customer_hide_options', ''), ('panel', 'is_configured', '0'), - ('panel', 'version', '0.10.0-rc1'), + ('panel', 'version', '0.10.0-rc2'), ('panel', 'db_version', '201904250'); diff --git a/install/updates/froxlor/0.10/update_0.10.inc.php b/install/updates/froxlor/0.10/update_0.10.inc.php index c4796636..d79ceb9e 100644 --- a/install/updates/froxlor/0.10/update_0.10.inc.php +++ b/install/updates/froxlor/0.10/update_0.10.inc.php @@ -255,3 +255,7 @@ if (\Froxlor\Froxlor::isDatabaseVersion('201904100')) { \Froxlor\Froxlor::updateToDbVersion('201904250'); } + +if (\Froxlor\Froxlor::isFroxlorVersion('0.10.0-rc1')) { + \Froxlor\Froxlor::updateToVersion('0.10.0-rc2'); +} diff --git a/lib/Froxlor/Froxlor.php b/lib/Froxlor/Froxlor.php index 99934a6d..53e32359 100644 --- a/lib/Froxlor/Froxlor.php +++ b/lib/Froxlor/Froxlor.php @@ -7,7 +7,7 @@ final class Froxlor { // Main version variable - const VERSION = '0.10.0-rc1'; + const VERSION = '0.10.0-rc2'; // Database version (YYYYMMDDC where C is a daily counter) const DBVERSION = '201904250';