diff --git a/filter.php b/filter.php index ce2ae33e076b66f67edc41f5ea5769475d998000..8c907ee325f1b096cfb1ae225a6a6b53c98ccf38 100644 --- a/filter.php +++ b/filter.php @@ -43,7 +43,7 @@ class filter_opencast extends moodle_text_filter { * @return array|mixed|string|string[]|null * @throws dml_exception */ - public function filter($text, array $options = array()) { + public function filter($text, array $options = []) { global $CFG, $PAGE; $i = 0; diff --git a/version.php b/version.php index eeb7b4ae50281debc25986d0b55c3c3ccc1588d4..ded0476d42a497baeb313ffe6f8869e58527caff 100644 --- a/version.php +++ b/version.php @@ -25,11 +25,11 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'filter_opencast'; -$plugin->release = 'development-version'; -$plugin->version = 2023030100; -$plugin->requires = 2020061500; // Requires Moodle 3.9+. -$plugin->maturity = MATURITY_ALPHA; -$plugin->dependencies = array( - 'tool_opencast' => 2023030100, - 'mod_opencast' => 2023052300 -); +$plugin->release = 'v4.3-r1'; +$plugin->version = 2023112200; +$plugin->requires = 2020061524; // Requires Moodle 3.9+. +$plugin->maturity = MATURITY_STABLE; +$plugin->dependencies = [ + 'tool_opencast' => 2023112200, + 'mod_opencast' => 2023112200, +];