Skip to content

Commit

Permalink
Prepare compatibility for Moodle 4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Oct 21, 2023
1 parent 43b5bce commit db22808
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_402_STABLE']
moodle-branch: ['MOODLE_403_STABLE']
database: [pgsql, mariadb]

steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ moodle-local_bulkenrol
Changes
-------

### Unreleased

* 2023-10-20 - Prepare compatibility for Moodle 4.3.

### v4.2-r1

* 2023-09-01 - Prepare compatibility for Moodle 4.2.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Moodle plugin which provides the possibility to bulk enrol a list of users who a
Requirements
------------

This plugin requires Moodle 4.2+
This plugin requires Moodle 4.3+


Motivation for this plugin
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
$plugin->component = 'local_bulkenrol';
$plugin->version = 2023090100;
$plugin->release = 'v4.2-r1';
$plugin->requires = 2023042400;
$plugin->supported = [402, 402];
$plugin->requires = 2023100900;
$plugin->supported = [403, 403];
$plugin->maturity = MATURITY_STABLE;

0 comments on commit db22808

Please sign in to comment.