Skip to content

Commit 23d13d4

Browse files
authored
Prepare v5.2.0 (#85)
1 parent 2030b76 commit 23d13d4

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGES.md

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

3+
### 5.2.0 (2023-03-17)
4+
- new functions: binomialpdf() and binomialcdf()
5+
- bugfix: gcd() now gives correct result even if one argument is 0
6+
- internal: removed deprecated notify()
7+
38
### 5.1.2 (2023-02-15)
49
- bugfix: internal functions (e.g. sigfig) working with map() again
510

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ at the date of this writing. It was then upgraded to the new question engine int
1717
Jean-Michel Védrine.
1818

1919
This version is compatible with Moodle 3.9 and newer. It has been tested with Moodle
20-
versions 3.11, 4.0 and 4.1. It has also been tested with PHP versions 7.4 and 8.0.
20+
versions 3.9, 3.11, 4.0 and 4.1. It has also been tested with PHP versions 7.4 and 8.0.
2121

2222

2323
### Requirements

version.php

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

2727
$plugin->component = 'qtype_formulas';
28-
$plugin->version = 2023021500;
28+
$plugin->version = 2023031700;
2929

30-
$plugin->cron = 0;
31-
$plugin->requires = 2017111300;
30+
$plugin->cron = 0;
31+
$plugin->requires = 2017111300;
3232
$plugin->dependencies = array(
3333
'qbehaviour_adaptive' => 2015111600,
3434
'qbehaviour_adaptivemultipart' => 2014092500,
3535
'qtype_multichoice' => 2015111600,
3636
);
3737
$plugin->supported = [39, 401];
38-
$plugin->release = '5.1.2 for Moodle 3.9+';
38+
$plugin->release = '5.2.0 for Moodle 3.9+';
3939

40-
$plugin->maturity = MATURITY_STABLE;
40+
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)