diff --git a/CHANGES.md b/CHANGES.md index 28913c5..068f2fc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 1.0.0-beta.3 ### + +* Do not pass null as a string parameter to `json_decode()` to avoid deprecation warning. + ### 1.0.0-beta.2 ### * Fixed "No permission to access this repository." error when browsing Content bank diff --git a/version.php b/version.php index 20482af..26fd907 100644 --- a/version.php +++ b/version.php @@ -29,8 +29,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'editor_marklar'; -$plugin->release = '1.0.0-beta.2'; +$plugin->release = '1.0.0-beta.3'; $plugin->maturity = MATURITY_BETA; -$plugin->version = 2021060900; +$plugin->version = 2021060901; $plugin->requires = 2019111800; -$plugin->supported = [39, 311]; +$plugin->supported = [39, 401];