Skip to content

Commit a79c9f3

Browse files
committed
Call it 1.0.2
1 parent 3d52392 commit a79c9f3

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/moodle-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
php: ['8.1']
34-
moodle-branch: ['MOODLE_405_STABLE']
34+
moodle-branch: ['MOODLE_402_STABLE', 'MOODLE_405_STABLE']
3535
database: [pgsql]
3636

3737
steps:

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.0.2 ###
2+
3+
* Fixed unexpected token error on pages with textareas with special chars in
4+
identifiers (#28). Credit goes to Juan Segarra Montesinos (@juancs).
5+
* Moodle 4.5 marked as supported.
6+
17
### 1.0.1 ###
28

39
* Removed obsolete option that started to print debugging output in Moodle 4.4 (#27).

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
defined('MOODLE_INTERNAL') || die();
3030

3131
$plugin->component = 'editor_marklar';
32-
$plugin->release = '1.0.1';
32+
$plugin->release = '1.0.2';
3333
$plugin->maturity = MATURITY_STABLE;
34-
$plugin->version = 2024030602;
34+
$plugin->version = 2024030603;
3535
$plugin->requires = 2023042400;
36-
$plugin->supported = [402, 404];
36+
$plugin->supported = [402, 405];

0 commit comments

Comments
 (0)