Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 5.3.4.post0 (2024-10-07)
- internal: explicitly list Moodle 4.5 as supported in version.php

Please note: this is the last version with support for Moodle < 4.1 and PHP < 8.0.

### 5.3.4 (2024-10-07)
- assure compatibility with Moodle 4.5

Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'qtype_formulas';
$plugin->version = 2024100700;
$plugin->version = 2024100701;

$plugin->cron = 0;
$plugin->requires = 2017111300;
Expand All @@ -34,7 +34,7 @@
'qbehaviour_adaptivemultipart' => 2014092500,
'qtype_multichoice' => 2015111600,
);
$plugin->supported = [39, 404];
$plugin->release = '5.3.4 for Moodle 3.9+';
$plugin->supported = [39, 405];
$plugin->release = '5.3.4.post0 for Moodle 3.9+';

$plugin->maturity = MATURITY_STABLE;
Loading