From db228083512f822d8e9d62ae86cdd0ddc7d2fc2f Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sat, 21 Oct 2023 16:08:28 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.3. --- .github/workflows/moodle-plugin-ci.yml | 2 +- CHANGES.md | 4 ++++ README.md | 2 +- version.php | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) 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 b814b5b..d458f26 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-local_bulkenrol Changes ------- +### Unreleased + +* 2023-10-20 - Prepare compatibility for Moodle 4.3. + ### v4.2-r1 * 2023-09-01 - Prepare compatibility for Moodle 4.2. diff --git a/README.md b/README.md index 88cf6a5..0983042 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle plugin which provides the possibility to bulk enrol a list of users who a 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 daf4dcd..4303af8 100644 --- a/version.php +++ b/version.php @@ -28,6 +28,6 @@ $plugin->component = 'local_bulkenrol'; $plugin->version = 2023090100; $plugin->release = 'v4.2-r1'; -$plugin->requires = 2023042400; -$plugin->supported = [402, 402]; +$plugin->requires = 2023100900; +$plugin->supported = [403, 403]; $plugin->maturity = MATURITY_STABLE;