diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 4cf22fa..387e678 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: php: ['8.0', '8.1', '8.2'] - moodle-branch: ['MOODLE_402_STABLE'] + moodle-branch: ['MOODLE_403_STABLE'] database: [pgsql, mariadb] steps: diff --git a/CHANGES.md b/CHANGES.md index ef35695..51c31f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-tool_selfsignuphardlifecycle Changes ------- +### Unreleased + +* 2024-07-28 - Prepare compatibility for Moodle 4.3. + ### v4.2-r1 * 2024-07-28 - Prepare compatibility for Moodle 4.2. diff --git a/README.md b/README.md index 3f19676..a6ba2d6 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle admin tool to suspend and delete users based on their account creation da Requirements ------------ -This plugin requires Moodle 4.2+ +This plugin requires Moodle 4.3+ Motivation for this plugin diff --git a/version.php b/version.php index bb44e97..2001ae7 100644 --- a/version.php +++ b/version.php @@ -27,6 +27,6 @@ $plugin->component = 'tool_selfsignuphardlifecycle'; $plugin->version = 2023042400; $plugin->release = 'v4.2-r1'; -$plugin->requires = 2023042400; -$plugin->supported = [402, 402]; +$plugin->requires = 2023100900; +$plugin->supported = [403, 403]; $plugin->maturity = MATURITY_STABLE;