diff --git a/CHANGES.md b/CHANGES.md index e1abff6..d2c13f6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,14 @@ moodle-mod_etherpadlite Changes ------- +### v4.4 + +* 2024-07-10 - Requires now Moodle 4.4 +* 2024-07-10 - Optimize github actions +* 2024-07-10 - Fix some smaller coding style issues +* 2024-07-10 - All recent Moodle and PHP versions (Luca Bösch) #75 +* 2024-05-26 - Smaller monologo icon for Moodle ≥ 4.4 (Luca Bösch) #74 + ### v4.3.1 * 2023-11-09 - Fix client construtor #73 (Thank to Daniil Fajnberg) diff --git a/version.php b/version.php index edc661b..37bb81d 100644 --- a/version.php +++ b/version.php @@ -26,8 +26,8 @@ */ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2023101501; // The current module version (Date: YYYYMMDDXX). -$plugin->release = 'v4.3 (2023110900)'; -$plugin->requires = 2022041200; +$plugin->version = 2024071000; // The current module version (Date: YYYYMMDDXX). +$plugin->release = 'v4.4 (2024071000)'; +$plugin->requires = 2024041600; $plugin->component = 'mod_etherpadlite'; $plugin->maturity = MATURITY_STABLE;