diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index ac9a15d..efd2d20 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 4c9ba5e..4f7760c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus 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 7b3330f..5466bdb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but 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 83af49a..4b78876 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'auth_ldap_syncplus'; $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; -$plugin->dependencies = ['auth_ldap' => 2023042400]; +$plugin->dependencies = ['auth_ldap' => 2023100900];