Skip to content

Commit cba403d

Browse files
authored
added 4.5 to supported versions (#153)
1 parent 6510ad5 commit cba403d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### 5.3.4.post0 (2024-10-07)
4+
- internal: explicitly list Moodle 4.5 as supported in version.php
5+
6+
Please note: this is the last version with support for Moodle < 4.1 and PHP < 8.0.
7+
38
### 5.3.4 (2024-10-07)
49
- assure compatibility with Moodle 4.5
510

version.php

+3-3
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 = 2024100700;
28+
$plugin->version = 2024100701;
2929

3030
$plugin->cron = 0;
3131
$plugin->requires = 2017111300;
@@ -34,7 +34,7 @@
3434
'qbehaviour_adaptivemultipart' => 2014092500,
3535
'qtype_multichoice' => 2015111600,
3636
);
37-
$plugin->supported = [39, 404];
38-
$plugin->release = '5.3.4 for Moodle 3.9+';
37+
$plugin->supported = [39, 405];
38+
$plugin->release = '5.3.4.post0 for Moodle 3.9+';
3939

4040
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)