Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bwalkerl committed Feb 22, 2024
1 parent 8a0a740 commit 8f612ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db/install.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<XMLDB PATH="admin/tool/heartbeat/db" VERSION="2024012201" COMMENT="XMLDB file for Moodle tool/heartbeat">
<XMLDB PATH="admin/tool/heartbeat/db" VERSION="2024022200" COMMENT="XMLDB file for Moodle tool/heartbeat">
<TABLES>
<TABLE NAME="tool_heartbeat_overrides" COMMENT="Exempted checks for heartbeat tool">
<FIELDS>
Expand Down
4 changes: 2 additions & 2 deletions db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function xmldb_tool_heartbeat_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2023102400, 'tool', 'heartbeat');
}

if ($oldversion < 2024012201) {
if ($oldversion < 2024022200) {
// Define the new table.
$table = new xmldb_table('tool_heartbeat_overrides');

Expand All @@ -68,7 +68,7 @@ function xmldb_tool_heartbeat_upgrade($oldversion) {
}

// Update the plugin version.
upgrade_plugin_savepoint(true, 2024012201, 'tool', 'heartbeat');
upgrade_plugin_savepoint(true, 2024022200, 'tool', 'heartbeat');
}

return true;
Expand Down
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 = 2024012201;
$plugin->release = 2024012201; // Match release exactly to version.
$plugin->version = 2024022200;
$plugin->release = 2024022200; // Match release exactly to version.
$plugin->requires = 2020061500; // Support for 3.9 and above, due to the Check API.
$plugin->supported = [39, 401];
$plugin->component = 'tool_heartbeat';
Expand Down

0 comments on commit 8f612ac

Please sign in to comment.