Skip to content

Commit 7498e14

Browse files
committed
Prepare compatibility for Moodle 5.1.
1 parent 7879a1e commit 7498e14

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ moodle-lifecycletrigger_customfieldsemester
44
Changes
55
-------
66

7+
### Unreleased
8+
9+
* 2025-10-26 - Prepare compatibility for Moodle 5.1.
10+
711
### v5.0-r3
812

913
* 2025-10-31 - Improvement: Verify that the semester customfield exists when restoring a workflow with this trigger, credits to bluetom.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Moodle trigger subplugin for the Moodle admin tool "Course Life Cycle" which tri
99
Requirements
1010
------------
1111

12-
This plugin requires Moodle 5.0+
12+
This plugin requires Moodle 5.1+
1313

1414
Additionally, this plugin requires two other third party plugins:
1515

version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
$plugin->component = 'lifecycletrigger_customfieldsemester';
2929
$plugin->version = 2025041402;
3030
$plugin->release = 'v5.0-r3';
31-
$plugin->requires = 2025041400;
32-
$plugin->supported = [500, 500];
31+
$plugin->requires = 2025100600;
32+
$plugin->supported = [501, 501];
3333
$plugin->maturity = MATURITY_STABLE;
34-
$plugin->dependencies = ['tool_lifecycle' => 2025050403,
35-
'customfield_semester' => 2025043001, ];
34+
$plugin->dependencies = ['tool_lifecycle' => 2025102300,
35+
'customfield_semester' => 2025102700, ];

0 commit comments

Comments
 (0)