Skip to content

Commit 3fe0126

Browse files
committed
version.php
1 parent 12d3716 commit 3fe0126

File tree

21 files changed

+43
-43
lines changed

21 files changed

+43
-43
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
4.5.0 (2025-04-28)
4+
4.5.0 (2025-05-04)
55
------------------
66
* [FEATURE] Workflowoverview: Added possibility to select single courses for process
77
* [FEATURE] Add customfielddelay trigger

db/upgrade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ function xmldb_tool_lifecycle_upgrade($oldversion) {
502502

503503
}
504504

505-
if ($oldversion < 2025042800) {
505+
if ($oldversion < 2025050400) {
506506

507507
// Changing precision of field instancename on table tool_lifecycle_trigger to (100).
508508
$table = new xmldb_table('tool_lifecycle_trigger');
@@ -584,7 +584,7 @@ function xmldb_tool_lifecycle_upgrade($oldversion) {
584584
workflow_manager::remove($trigger->workflowid);
585585
}
586586

587-
upgrade_plugin_savepoint(true, 2025042800, 'tool', 'lifecycle');
587+
upgrade_plugin_savepoint(true, 2025050400, 'tool', 'lifecycle');
588588

589589
}
590590

step/adminapprove/db/upgrade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function xmldb_lifecyclestep_adminapprove_upgrade($oldversion) {
3737

3838
global $DB;
3939
$dbman = $DB->get_manager();
40-
if ($oldversion < 2025042800) {
40+
if ($oldversion < 2025050400) {
4141

4242
// Define table lifecyclestep_adminapprove to be created.
4343
$table = new xmldb_table('lifecyclestep_adminapprove');
@@ -57,7 +57,7 @@ function xmldb_lifecyclestep_adminapprove_upgrade($oldversion) {
5757
}
5858

5959
// Adminapprove savepoint reached.
60-
upgrade_plugin_savepoint(true, 2025042800, 'lifecyclestep', 'adminapprove');
60+
upgrade_plugin_savepoint(true, 2025050400, 'lifecyclestep', 'adminapprove');
6161
}
6262
return true;
6363
}

step/adminapprove/version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424

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

27-
$plugin->version = 2025042800;
27+
$plugin->version = 2025050400;
2828
$plugin->component = 'lifecyclestep_adminapprove';
2929
$plugin->dependencies = [
30-
'tool_lifecycle' => 2025042800,
30+
'tool_lifecycle' => 2025050400,
3131
];
32-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
32+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
3333
$plugin->supported = [401, 405];
3434
$plugin->release = 'v4.5-r1';
3535
$plugin->maturity = MATURITY_STABLE;

step/createbackup/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

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

27-
$plugin->version = 2025042800;
28-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
27+
$plugin->version = 2025050400;
28+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
2929
$plugin->supported = [401, 405];
3030
$plugin->component = 'lifecyclestep_createbackup';
3131
$plugin->release = 'v4.5-r1';

step/deletecourse/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

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

27-
$plugin->version = 2025042800;
28-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
27+
$plugin->version = 2025050400;
28+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
2929
$plugin->supported = [401, 405];
3030
$plugin->component = 'lifecyclestep_deletecourse';
3131
$plugin->release = 'v4.5-r1';

step/duplicate/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

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

27-
$plugin->version = 2025042800;
28-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
27+
$plugin->version = 2025050400;
28+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
2929
$plugin->supported = [401, 405];
3030
$plugin->component = 'lifecyclestep_duplicate';
3131
$plugin->release = 'v4.5-r1';

step/email/db/upgrade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function xmldb_lifecyclestep_email_upgrade($oldversion) {
3737

3838
global $DB;
3939
$dbman = $DB->get_manager();
40-
if ($oldversion < 2025042800) {
40+
if ($oldversion < 2025050400) {
4141
$table = new xmldb_table('lifecyclestep_email_notified');
4242

4343
// Adding fields to table lifecyclestep_email_notified.
@@ -57,7 +57,7 @@ function xmldb_lifecyclestep_email_upgrade($oldversion) {
5757
}
5858

5959
// Lifecycle savepoint reached.
60-
upgrade_plugin_savepoint(true, 2025042800, 'lifecyclestep', 'email');
60+
upgrade_plugin_savepoint(true, 2025050400, 'lifecyclestep', 'email');
6161
}
6262
return true;
6363
}

step/email/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
defined('MOODLE_INTERNAL') || die;
2626

2727

28-
$plugin->version = 2025042800;
29-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
28+
$plugin->version = 2025050400;
29+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
3030
$plugin->supported = [401, 405];
3131
$plugin->component = 'lifecyclestep_email';
3232
$plugin->release = 'v4.5-r1';

step/makeinvisible/version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424

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

27-
$plugin->version = 2025042800;
28-
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
27+
$plugin->version = 2025050400;
28+
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
2929
$plugin->supported = [401, 405];
3030
$plugin->component = 'lifecyclestep_makeinvisible';
3131
$plugin->dependencies = [
32-
'tool_lifecycle' => 2025042800,
32+
'tool_lifecycle' => 2025050400,
3333
];
3434
$plugin->release = 'v4.5-r1';
3535
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)