Skip to content

Commit

Permalink
MDL-43195 core: Version/upgrade bump
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols authored and sarjona committed Aug 17, 2023
1 parent c3237c9 commit be3878c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions lib/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3332,10 +3332,6 @@ function xmldb_main_upgrade($oldversion) {
// Main savepoint reached.
upgrade_main_savepoint(true, 2023062700.01);
}
if ($oldversion < 2023062700.06) {
upgrade_core_licenses();
upgrade_main_savepoint(true, 2023062700.06);
}

if ($oldversion < 2023062900.01) {

Expand Down Expand Up @@ -3374,5 +3370,10 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2023080100.00);
}

if ($oldversion < 2023081500.00) {
upgrade_core_licenses();
upgrade_main_savepoint(true, 2023081500.00);
}

return true;
}
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

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

$version = 2023081400.01; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2023081500.00; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.3dev+ (Build: 20230814)'; // Human-friendly version name
Expand Down

0 comments on commit be3878c

Please sign in to comment.