From eb464142723bbbd9f6dc8ec906e671125bb9f82a Mon Sep 17 00:00:00 2001 From: Nathan Nguyen Date: Thu, 14 Nov 2024 15:18:08 +1100 Subject: [PATCH] Support Moodle 4.5 --- README.md | 8 ++++---- version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c457040..45d2e06 100644 --- a/README.md +++ b/README.md @@ -84,10 +84,10 @@ For more instructions on installation, visit [the Moodle Plugin Installation Gui Branches -------- -| Branch | Moodle version | PHP Version | -| ------------------ | ----------------- | ----------- | -| MOODLE_41_STABLE | Moodle 4.1+ | Php 7.4+ | -| master | Moodle 3.8 - 4.1 | Php 7.1 | +| Branch | Moodle version | PHP Version | +|-------------------| ----------------- | ----------- | +| MOODLE_401_STABLE | Moodle 4.1+ | Php 7.4+ | +| master | Moodle 3.8 - 4.1 | Php 7.1 | The master branch will work natively with Moodle from version 3.8 onwards, but has soft support for earlier versions with backports for hooks. If a previous version is used, the commit from MDL-66173 can be backported to a previous installation, and the plugin will be functional. diff --git a/version.php b/version.php index 27e67d5..523507b 100644 --- a/version.php +++ b/version.php @@ -29,4 +29,4 @@ $plugin->requires = 2022112800; $plugin->component = 'tool_securityquestions'; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [401, 403]; +$plugin->supported = [401, 405];