From 5467f3a5919edda55a31dbe168b1bc416f8cef3b Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Wed, 21 Aug 2024 20:36:13 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.4. --- .github/workflows/moodle-plugin-ci.yml | 4 ++-- CHANGES.md | 4 ++++ README.md | 2 +- version.php | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index f1dc0e5..4d16ff7 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -19,8 +19,8 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1', '8.2'] - moodle-branch: ['MOODLE_403_STABLE'] + php: ['8.1', '8.2', '8.3'] + moodle-branch: ['MOODLE_404_STABLE'] database: [pgsql] steps: diff --git a/CHANGES.md b/CHANGES.md index 678df47..36fff8b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-tool_opcache Changes ------- +### Unreleased + +* 2024-08-20 - Prepare compatibility for Moodle 4.4. + ### v4.3-r3 * 2024-08-21 - Upgrade OPcache GUI to version 3.5.5 diff --git a/README.md b/README.md index 00ab33c..2887cb3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle plugin which adds a PHP Opcache management GUI to Moodle site administrat Requirements ------------ -This plugin requires Moodle 4.3+ +This plugin requires Moodle 4.4+ Motivation for this plugin diff --git a/version.php b/version.php index 738768e..a7e3d3d 100644 --- a/version.php +++ b/version.php @@ -27,6 +27,6 @@ $plugin->component = 'tool_opcache'; $plugin->version = 2023102002; $plugin->release = 'v4.3-r3'; -$plugin->requires = 2023100900; -$plugin->supported = [403, 403]; +$plugin->requires = 2024042200; +$plugin->supported = [404, 404]; $plugin->maturity = MATURITY_STABLE;