From 00eb5ed87b746d4f8ae741ba37e91b2a8e2b12a5 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Tue, 27 Nov 2018 18:41:05 +0100 Subject: [PATCH] set version to 0.9.40.1 for bugfix release Signed-off-by: Michael Kaufmann --- install/froxlor.sql | 2 +- install/updates/froxlor/0.9/update_0.9.inc.php | 6 ++++++ lib/version.inc.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/install/froxlor.sql b/install/froxlor.sql index aeb5039e72..dabc7e7156 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -684,7 +684,7 @@ opcache.interned_strings_buffer'), ('panel', 'password_special_char_required', '0'), ('panel', 'password_special_char', '!?<>ยง$%+#=@'), ('panel', 'customer_hide_options', ''), - ('panel', 'version', '0.9.40'), + ('panel', 'version', '0.9.40.1'), ('panel', 'db_version', '201809280'); 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 50f4720a61..1c228f0f0a 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -4066,3 +4066,9 @@ showUpdateStep("Updating from 0.9.39.5 to 0.9.40", false); updateToVersion('0.9.40'); } + +if (isFroxlorVersion('0.9.40')) { + + showUpdateStep("Updating from 0.9.40 to 0.9.40.1", false); + updateToVersion('0.9.40.1'); +} diff --git a/lib/version.inc.php b/lib/version.inc.php index 364a2fbf8d..2db687fa7b 100644 --- a/lib/version.inc.php +++ b/lib/version.inc.php @@ -16,7 +16,7 @@ */ // Main version variable -$version = '0.9.40'; +$version = '0.9.40.1'; // Database version (YYYYMMDDC where C is a daily counter) $dbversion = '201809280';