diff --git a/CHANGELOG.md b/CHANGELOG.md index e542a90..7e3294b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Changelog ## - +[[v1.5.2]] 20241014 +fix: missing icon to indicate if table is collapsed or unfold in boost in moodle 4.0.5 [[v1.5.1]] 20240120 Reviewed version of pull request with some adaptions. diff --git a/version.php b/version.php index 4ff81e2..7fe880f 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,8 @@ defined('MOODLE_INTERNAL') || die; $plugin->maturity = MATURITY_STABLE; -$plugin->version = 2024012000; +$plugin->version = 2024101400; $plugin->component = 'block_overviewmyrolesincourses'; -$plugin->requires = 2022041900; // Requires Moodle version 4.0 or higher. -$plugin->release = 'v1.5.1'; +$plugin->requires = 2022041901.00; // Moodle 4.0.1 +$plugin->supported = [401, 405,]; // Only tested for 4.0.1 and 4.0.5 +$plugin->release = 'v1.5.2';