Skip to content

Commit

Permalink
Upgrade version - Hotfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviervalentin committed Apr 8, 2024
1 parent 706886e commit 2daf7be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ function xmldb_report_coursemanager_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2024021608, 'report', 'coursemanager');
}
if ($oldversion < 2024021609) {
// Moodle first release in plugins directory - V3.1.0.
upgrade_plugin_savepoint(true, 2024021609, 'report', 'coursemanager');
}
if ($oldversion < 2024040801) {
// Hotfixes after Moodle release - V3.1.1.
upgrade_plugin_savepoint(true, 2024040801, 'report', 'coursemanager');
}
return true;
}
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024021609;
$plugin->release = '3.1.0';
$plugin->version = 2024040801;
$plugin->release = '3.1.1';
$plugin->requires = 2020061516;
$plugin->component = 'report_coursemanager';
$plugin->maturity = MATURITY_STABLE;

0 comments on commit 2daf7be

Please sign in to comment.