Skip to content

Commit 370ff7f

Browse files
Update version and readme for the 2.3 release
1 parent 8c32816 commit 370ff7f

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

changes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change log for the embed questions filter
22

3+
## Changes in 2.3
4+
5+
* This version works with Moodle 4.4.
6+
* Moved deprecated filter.php class to classes/text_filter.php as part of Moodle 4.5 deprecation cleanup,
7+
retaining support for older Moodle versions.
8+
* Added a new feature in the embedded question UI that provides students with a link to view a
9+
summary of their previous attempts.
10+
* Theme update: staff icons changed from grey to black.
11+
* Fixes some coding style issues.
12+
13+
314
## Changes in 2.2
415

516
* This version works with Moodle 4.0. However, this is a minimal change to make it work.

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424

2525
defined('MOODLE_INTERNAL') || die();
2626

27-
$plugin->version = 2022032900;
28-
$plugin->requires = 2020061500;
27+
$plugin->version = 2025050100;
28+
$plugin->requires = 2024042200; // Requires Moodle 4.4.
2929
$plugin->component = 'filter_embedquestion';
3030
$plugin->maturity = MATURITY_STABLE;
31-
$plugin->release = '2.2 for Moodle 3.9+';
31+
$plugin->release = '2.3 for Moodle 4.4+';
3232

3333
$plugin->outestssufficient = true;

0 commit comments

Comments
 (0)