From b48dcd43701b6ae2a0b8af3c4234075c600cb161 Mon Sep 17 00:00:00 2001 From: Alexander Bias <alexander.bias@uni-ulm.de> Date: Sun, 10 Jan 2021 00:00:15 +0100 Subject: [PATCH] Prepare compatibility for Moodle 3.10. --- .travis.yml | 2 +- CHANGES.md | 1 + README.md | 2 +- version.php | 6 +++--- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01343c1..bcab70b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ php: env: global: - - MOODLE_BRANCH=MOODLE_39_STABLE + - MOODLE_BRANCH=MOODLE_310_STABLE matrix: - DB=pgsql - DB=mysqli diff --git a/CHANGES.md b/CHANGES.md index 3ff8ff4..aa39900 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ Changes ### Unreleased +* 2021-01-09 - Prepare compatibility for Moodle 3.10. * 2021-01-06 - Change in Moodle release support: For the time being, this plugin is maintained for the most recent LTS release of Moodle as well as the most recent major release of Moodle. Bugfixes are backported to the LTS release. However, new features and improvements are not necessarily backported to the LTS release. diff --git a/README.md b/README.md index 10e2f50..59c896c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle Boost Campus child theme which is intended to get the full Boost Campus f Requirements ------------ -This plugin requires Moodle 3.9+ +This plugin requires Moodle 3.10+ Motivation for this theme diff --git a/version.php b/version.php index 75e1e31..6905c35 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'theme_boost_campus_child'; $plugin->version = 2020100700; $plugin->release = 'v3.9-r1'; -$plugin->requires = 2020061500; -$plugin->supported = [39, 39]; +$plugin->requires = 2020110900; +$plugin->supported = [310, 310]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = array('theme_boost' => 2020061500, 'theme_boost_campus' => 2020093000); +$plugin->dependencies = array('theme_boost' => 2020110900, 'theme_boost_campus' => 2020112800); -- GitLab