Skip to content

Commit 3272799

Browse files
authored
prepare release of 6.2.1 (#287)
1 parent 554fad4 commit 3272799

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
# Changelog
22

3+
### 6.2.1 (2025-10-06)
4+
5+
- bugfix: use float datatype to calculate factorials
6+
- bugfix: allow ° symbol as a unit
7+
- improvement: allow <> as alternative to !=
8+
- internal: assure full compatibility with Moodle 5.1
9+
10+
Note: The plugin now allows to calculate factorials larger than 20! in the same way
11+
as older (5.x) versions. However, due to limited precision, the result for factorials
12+
larger than 27! will generally not be accurate -- in the same way as in older versions.
13+
314
### 6.2.0 (2025-09-21)
415

516
- improvement: add option to hide "Number" tooltip

version.php

Lines changed: 3 additions & 3 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 = 2025092100;
28+
$plugin->version = 2025100600;
2929

3030
$plugin->cron = 0;
3131
$plugin->requires = 2022112800;
@@ -35,7 +35,7 @@
3535
'qtype_multichoice' => 2015111600,
3636
'filter_mathjaxloader' => 2022112800,
3737
];
38-
$plugin->supported = [401, 500];
39-
$plugin->release = '6.2.0';
38+
$plugin->supported = [401, 501];
39+
$plugin->release = '6.2.1';
4040

4141
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)