diff --git a/install/froxlor.sql b/install/froxlor.sql index 9e2f4121d6..aeb5039e72 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.39.5'), + ('panel', 'version', '0.9.40'), ('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 6aeea7231c..50f4720a61 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -4060,3 +4060,9 @@ updateToDbVersion('201809280'); } + +if (isFroxlorVersion('0.9.39.5')) { + + showUpdateStep("Updating from 0.9.39.5 to 0.9.40", false); + updateToVersion('0.9.40'); +} diff --git a/lib/version.inc.php b/lib/version.inc.php index f3233942b1..364a2fbf8d 100644 --- a/lib/version.inc.php +++ b/lib/version.inc.php @@ -16,7 +16,7 @@ */ // Main version variable -$version = '0.9.39.5'; +$version = '0.9.40'; // Database version (YYYYMMDDC where C is a daily counter) $dbversion = '201809280';