Skip to content
Snippets Groups Projects
Commit 74008c57 authored by Chris Sangwin's avatar Chris Sangwin
Browse files

Bump version number, and ensure DB upgrade captures both 4.4.0 and 4.5.0 versions.

parent 758a2cdf
No related branches found
No related tags found
No related merge requests found
...@@ -934,7 +934,7 @@ function xmldb_qtype_stack_upgrade($oldversion) { ...@@ -934,7 +934,7 @@ function xmldb_qtype_stack_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2023092400, 'qtype', 'stack'); upgrade_plugin_savepoint(true, 2023092400, 'qtype', 'stack');
} }
if ($oldversion < 2023093000) { if ($oldversion < 2023111600) {
$table = new xmldb_table('qtype_stack_options'); $table = new xmldb_table('qtype_stack_options');
$field = new xmldb_field('decimals', XMLDB_TYPE_CHAR, '8', null, XMLDB_NOTNULL, null, '.'); $field = new xmldb_field('decimals', XMLDB_TYPE_CHAR, '8', null, XMLDB_NOTNULL, null, '.');
...@@ -944,7 +944,7 @@ function xmldb_qtype_stack_upgrade($oldversion) { ...@@ -944,7 +944,7 @@ function xmldb_qtype_stack_upgrade($oldversion) {
} }
// STACK savepoint reached. // STACK savepoint reached.
upgrade_plugin_savepoint(true, 2023093000, 'qtype', 'stack'); upgrade_plugin_savepoint(true, 2023111600, 'qtype', 'stack');
} }
// Add new upgrade blocks just above here. // Add new upgrade blocks just above here.
......
...@@ -3316,4 +3316,4 @@ is_lang(code):=ev(is(%_STACK_LANG=code),simp=true)$ ...@@ -3316,4 +3316,4 @@ is_lang(code):=ev(is(%_STACK_LANG=code),simp=true)$
/* Stack expects some output with the version number the output happens at */ /* Stack expects some output with the version number the output happens at */
/* maximalocal.mac after additional library loading */ /* maximalocal.mac after additional library loading */
stackmaximaversion:2023102701$ stackmaximaversion:2023111600$
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
$plugin->version = 2023102701; $plugin->version = 2023111600;
$plugin->requires = 2020061500; $plugin->requires = 2020061500;
$plugin->cron = 0; $plugin->cron = 0;
$plugin->component = 'qtype_stack'; $plugin->component = 'qtype_stack';
$plugin->maturity = MATURITY_ALPHA; $plugin->maturity = MATURITY_ALPHA;
$plugin->release = '4.5.0 for Moodle 3.9+'; $plugin->release = '4.6.0 for Moodle 3.9+';
$plugin->dependencies = array( $plugin->dependencies = array(
'qbehaviour_adaptivemultipart' => 2020103000, 'qbehaviour_adaptivemultipart' => 2020103000,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment