Skip to content

Commit 4deefaa

Browse files
authored
prepare release of version 6.2.2 (#297)
1 parent 553d423 commit 4deefaa

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
### 6.2.2 (2025-11-15)
4+
5+
- compatibility: correctly render multi-choice answer placeholders that use spaces around variable name; although undocumented, this used to be possible in 5.x versions
6+
- bugfix: improved validation of answer types "Numeric" and "Numerical formula"
7+
- bugfix: MathJax renderer should not fail if accidentally called with invalid input
8+
- internal: improve unit tests for factorials
9+
- internal: follow updated Moodle coding style rules
10+
311
### 6.2.1 (2025-10-06)
412

513
- bugfix: use float datatype to calculate factorials

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ This version is compatible with Moodle 4.1 and newer. It has been tested with:
2424
- Moodle 4.4 using PHP 8.1, PHP 8.2 and PHP 8.3
2525
- Moodle 4.5 using PHP 8.1, PHP 8.2 and PHP 8.3
2626
- Moodle 5.0 using PHP 8.2, PHP 8.3 and PHP 8.4
27+
- Moodle 5.1 using PHP 8.2, PHP 8.3 and PHP 8.4
2728

2829

2930
### Requirements

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
defined('MOODLE_INTERNAL') || die();
2626

2727
$plugin->component = 'qtype_formulas';
28-
$plugin->version = 2025100600;
28+
$plugin->version = 2025111500;
2929

3030
$plugin->cron = 0;
3131
$plugin->requires = 2022112800;
@@ -36,6 +36,6 @@
3636
'filter_mathjaxloader' => 2022112800,
3737
];
3838
$plugin->supported = [401, 501];
39-
$plugin->release = '6.2.1';
39+
$plugin->release = '6.2.2';
4040

4141
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)