From 87b0bac680a77e0e5705424a2fad798a53ac26d4 Mon Sep 17 00:00:00 2001 From: Benjamin Walker Date: Mon, 18 Mar 2024 09:44:08 +1000 Subject: [PATCH] Add 4.1 branch compatibility --- README.md | 8 +++++--- version.php | 8 ++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7ed8502..da1098c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/catalyst/moodle-tool_securityquestions/ci.yml?branch=master) +![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/catalyst/moodle-tool_securityquestions/ci.yml?branch=MOODLE_401_STABLE) # Security Questions 2FA @@ -97,8 +97,10 @@ For more instructions on installation, visit [the Moodle Plugin Installation Gui Branches -------- -For all Moodle versions, use the master branch. - +| Branch | Moodle version | PHP Version | +| ------------------ | ----------------- | ----------- | +| MOODLE_41_STABLE | Moodle 4.1+ | Php 7.4+ | +| master | Moodle 3.8 - 4.1 | Php 7.1 | Templates --------- diff --git a/version.php b/version.php index 7934fc1..27e67d5 100644 --- a/version.php +++ b/version.php @@ -24,9 +24,9 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2023020701; -$plugin->release = 2023020701; // Match release exactly to version. -$plugin->requires = 2016052300; +$plugin->version = 2024031500; +$plugin->release = 2024031500; // Match release exactly to version. +$plugin->requires = 2022112800; $plugin->component = 'tool_securityquestions'; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [38, 401]; +$plugin->supported = [401, 403];