From e7ba969d214af5f7102f77d0ef0a6a11f6e6f9d7 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sat, 21 Oct 2023 16:10:49 +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 930a173..ada35af 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-local_sandbox 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 fac44d9..3864232 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle plugin which programatically restores courses to predefined course states 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 49fdcce..965d8a2 100644 --- a/version.php +++ b/version.php @@ -27,6 +27,6 @@ $plugin->component = 'local_sandbox'; $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;