From a390a325d106af82a5de9b253ef1e4d2c707dcfd Mon Sep 17 00:00:00 2001 From: Alexander Bias <alexander.bias@uni-ulm.de> Date: Tue, 1 Dec 2020 20:29:30 +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 0a8663f..5e98ea3 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 8312bc2..924a51a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ Changes ### Unreleased +* 2020-11-28 - Prepare compatibility for Moodle 3.10. * 2020-11-18 - 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 ffbd40f..c11a9d1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle Boost child theme which is intended to meet the needs of university campu 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 afc2cc8..8e1e038 100644 --- a/version.php +++ b/version.php @@ -27,7 +27,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'theme_boost_campus'; $plugin->version = 2020112300; $plugin->release = 'v3.9-r3'; -$plugin->requires = 2020061502; -$plugin->supported = [39, 39]; +$plugin->requires = 2020110900; +$plugin->supported = [310, 310]; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = array('theme_boost' => 2020061500); +$plugin->dependencies = array('theme_boost' => 2020110900); -- GitLab