From 291ddd71ceb937c68000c85179990d6818b1f60d Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Wed, 12 Jun 2024 06:56:12 +0200 Subject: [PATCH] Prepare compatibility for Moodle 4.4. --- .github/workflows/moodle-plugin-ci.yml | 4 ++-- CHANGES.md | 4 ++++ README.md | 2 +- version.php | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 813c71bdfeb..f8e52b30483 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -30,8 +30,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, mariadb] steps: diff --git a/CHANGES.md b/CHANGES.md index 7d906ba7800..ec35d17a189 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-theme_boost_union Changes ------- +### Unreleased + +* 2024-06-01 - Prepare compatibility for Moodle 4.4. + ### v4.3-r15 * 2024-07-11 - Bugfix: Allow external SCSS to use SCSS variables by disabling the SCSS validation, resolves #683. diff --git a/README.md b/README.md index b6b1dafa9c0..5ddef03384c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Theme Boost Union is an enhanced child theme of Boost which is intended, on the Requirements ------------ -This theme requires Moodle 4.3+ +This theme requires Moodle 4.4+ Motivation for this theme diff --git a/version.php b/version.php index a094d9a876b..7e37702008d 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ $plugin->component = 'theme_boost_union'; $plugin->version = 2023102042; $plugin->release = 'v4.3-r15'; -$plugin->requires = 2023100900; -$plugin->supported = [403, 403]; +$plugin->requires = 2024042200; +$plugin->supported = [404, 404]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = ['theme_boost' => 2023100900]; +$plugin->dependencies = ['theme_boost' => 2024042200];