diff --git a/CHANGES.md b/CHANGES.md index f70040e..2ae6a13 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +### 1.0.1 ### + +* Removed obsolete option that started to print debugging output in Moodle 4.4 (#27). +* Moodle 4.4 marked as supported. + ### 1.0.0 ### * Added preference to use monospace font when editing the text (#11). diff --git a/version.php b/version.php index 2bdd009..2dd630b 100644 --- a/version.php +++ b/version.php @@ -29,8 +29,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'editor_marklar'; -$plugin->release = '1.0.0'; +$plugin->release = '1.0.1'; $plugin->maturity = MATURITY_STABLE; -$plugin->version = 2024030601; +$plugin->version = 2024030602; $plugin->requires = 2023042400; -$plugin->supported = [402, 403]; +$plugin->supported = [402, 404];