diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e7aa83..b5fbe59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/) and follow principles of [keep a changelog](https://keepachangelog.com). +## Version 2.18.0, 2024-08-07 + +__This version is not compatible with versions of Moodle prior to Moodle 4.4!__ + +### Changed +- Migrate legacy libphp callbacks to hooks (issue #135), enabling Moodle 4.4.x support. + ## Version 2.17.5, 2024-03-28 ### Changed diff --git a/README.md b/README.md index b1effbb..dc64de1 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,7 @@ See [Release notes](https://github.com/moodlebox/moodle-tool_moodlebox/blob/mast ## Thanks +- To Patrick Lemaire (@patlemaire), for the migration of legacy libphp callbacks to Moodle hooks. - To Adrian Perez (@adpe), for implementing restart and shutdown buttons in footer. - To Vincent Widmer (@smallhacks), for implementing PiJuice support. - To Visvanath Ratnaweera (@ratnavis), who kindly donated a Raspberry Pi 3A+ and loaned a Raspberry Pi 4 8GB, enabling support of these Raspberry Pi models. @@ -120,6 +121,5 @@ See [Release notes](https://github.com/moodlebox/moodle-tool_moodlebox/blob/mast Copyright © 2016 onwards, Nicolas Martignoni - All the source code is licensed under GPL 3 or any later version -- The documentation is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/version.php b/version.php index becd68a..20166f7 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2024062801; -$plugin->release = '2.17.6'; +$plugin->version = 2024080700; +$plugin->release = '2.18.0'; $plugin->requires = 2018120300; -$plugin->supported = [36, 403]; -$plugin->maturity = MATURITY_BETA; +$plugin->supported = [404,404]; +$plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';