Skip to content

Commit

Permalink
set version to 0.9.37 for upcoming release
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kaufmann (d00p) <[email protected]>
  • Loading branch information
d00p committed Aug 2, 2016
1 parent ceaa0fc commit f5dc8aa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion install/froxlor.sql
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,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.37-rc1'),
('panel', 'version', '0.9.37'),
('panel', 'db_version', '201607210');


Expand Down
12 changes: 8 additions & 4 deletions install/updates/froxlor/0.9/update_0.9.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -3397,9 +3397,7 @@

if (isFroxlorVersion('0.9.36')) {

showUpdateStep("Updating from 0.9.36 to 0.9.37-rc1");
lastStepStatus(0);

showUpdateStep("Updating from 0.9.36 to 0.9.37-rc1", false);
updateToVersion('0.9.37-rc1');
}

Expand All @@ -3408,6 +3406,12 @@
showUpdateStep("Adding new setting to hide certain options in customer panel");
Settings::AddNew("panel.customer_hide_options", "");
lastStepStatus(0);

updateToDbVersion('201607210');
}

if (isFroxlorVersion('0.9.37-rc1')) {

showUpdateStep("Updating from 0.9.37-rc1 to 0.9.37 final", false);
updateToVersion('0.9.37');
}
2 changes: 1 addition & 1 deletion lib/version.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

// Main version variable
$version = '0.9.37-rc1';
$version = '0.9.37';

// Database version (YYYYMMDDC where C is a daily counter)
$dbversion = '201607210';
Expand Down

0 comments on commit f5dc8aa

Please sign in to comment.