diff --git a/.travis.yml b/.travis.yml index fc3d1bfe69eb68361fa130b76c51b2a4f97e5baa..60d28c081e4251134859d4eaae1645bbf7981466 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ php: env: global: - - MOODLE_BRANCH=MOODLE_36_STABLE + - MOODLE_BRANCH=MOODLE_37_STABLE matrix: - DB=pgsql - DB=mysqli diff --git a/CHANGES.md b/CHANGES.md index c81fb08df16885ecf6736b7ff000fc4246825d72..0580f790c0d9df3644e549289195e06d3d23c683 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-theme_boost_campus Changes ------- +### Unreleased + +* 2019-05-31 - Prepare compatibility for Moodle 3.7. + ### Release v3.6-r5 * 2019-05-29 - Check existence of property blockcolumnwidth before accessing it. diff --git a/README.md b/README.md index f04e067ce48b33c1627a92e30f2f7a6939c1b1db..71ae1889d972cc905b5d39767b87f71f146d0994 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.6+ +This plugin requires Moodle 3.7+ Motivation for this theme diff --git a/version.php b/version.php index d061cd4b8bd31c465835034a1e68db9781ca9db7..1a600eb4e97ca14816b7c738c621f54e77d7ed4c 100644 --- a/version.php +++ b/version.php @@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'theme_boost_campus'; $plugin->version = 2019052900; $plugin->release = 'v3.6-r5'; -$plugin->requires = 2018120300; +$plugin->requires = 2019052000; $plugin->maturity = MATURITY_STABLE; -$plugin->dependencies = array('theme_boost' => 2018120300); +$plugin->dependencies = array('theme_boost' => 2019052000);