Skip to content

Commit

Permalink
Add 4.1 branch compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
bwalkerl committed Mar 17, 2024
1 parent 6b6aacd commit 87b0bac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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
---------
Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];

0 comments on commit 87b0bac

Please sign in to comment.