From 06772b3b0c035a530adb8ba9dffd0be5776503e2 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Sat, 21 Oct 2023 16:17:05 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.3. --- .github/workflows/moodle-plugin-ci.yml | 2 +- CHANGES.md | 4 ++++ version.php | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 4bed55e355e..31a9b4eca26 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 29a7fcda251..bb92bcc18a3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-theme_boost_union Changes ------- +### Unreleased + +* 2023-10-20 - Prepare compatibility for Moodle 4.3. + ### v4.2-r3 * 2023-10-01 - Bugfix: Omit PHP deprecation warnings on PHP 8.2, solves #411. diff --git a/version.php b/version.php index 87d5978a14a..6c37e6dadea 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'theme_boost_union'; $plugin->version = 2023090102; $plugin->release = 'v4.2-r3'; -$plugin->requires = 2023042402.04; -$plugin->supported = [402, 402]; +$plugin->requires = 2023100900; +$plugin->supported = [403, 403]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = ['theme_boost' => 2023042400]; +$plugin->dependencies = ['theme_boost' => 2023100900];