Skip to content

Commit 9430b81

Browse files
committed
version.php, changes
1 parent 3c8afb0 commit 9430b81

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG
22
=========
33

4+
5.0.2(2025-12-13)
5+
------------------
6+
* [FEATURE] workflowoverview: Do not take the specificdata trigger into account when counting
7+
* [FEATURE] Introduce optional max number of courses triggered per cron run and/or per day for a workflow
8+
* [FEATURE] New trigger depending on enddate PR #272
9+
* [FIXED] Fix a bootstrap bug in interaction table
10+
411
5.0.1(2025-11-15)
512
------------------
613
* [FEATURE] Customise buttons in adminapprove step PR #266

db/upgrade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ function xmldb_tool_lifecycle_upgrade($oldversion) {
612612
upgrade_plugin_savepoint(true, 2025050405, 'tool', 'lifecycle');
613613

614614
}
615-
if ($oldversion < 2025102303) {
615+
if ($oldversion < 2025102302) {
616616
$table = new xmldb_table('tool_lifecycle_workflow');
617617

618618
// Define field "triggeredpercron" to be added to tool_lifecycle_workflow.
@@ -635,7 +635,7 @@ function xmldb_tool_lifecycle_upgrade($oldversion) {
635635
$dbman->add_field($table, $field);
636636
}
637637

638-
upgrade_plugin_savepoint(true, 2025102303, 'tool', 'lifecycle');
638+
upgrade_plugin_savepoint(true, 2025102302, 'tool', 'lifecycle');
639639

640640
}
641641

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
$plugin->component = 'tool_lifecycle';
2828
$plugin->maturity = MATURITY_RC;
29-
$plugin->version = 2025102303;
29+
$plugin->version = 2025102302;
3030
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
3131
$plugin->supported = [405, 500];
32-
$plugin->release = 'v5.0-r4';
32+
$plugin->release = 'v5.0-r3';

0 commit comments

Comments
 (0)