Skip to content

Commit

Permalink
Prepare compatibility for Moodle 4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Oct 15, 2023
1 parent a82e4c2 commit 3d422c7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
moodle-branch: ['MOODLE_401_STABLE']
php: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_402_STABLE']
database: [pgsql]
extensions: [redis]

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-tool_redis
Changes
-------

### Unreleased

* 2023-09-01 - Prepare compatibility for Moodle 4.2.

### v4.1-r3

* 2023-10-14 - Add automated release to moodle.org/plugins
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 adds a Redis management GUI to Moodle site administration.
Requirements
------------

This plugin requires Moodle 4.1+
This plugin requires Moodle 4.2+


Motivation for this plugin
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
$plugin->component = 'tool_redis';
$plugin->version = 2023010502;
$plugin->release = 'v4.1-r3';
$plugin->requires = 2022112800;
$plugin->supported = [401, 401];
$plugin->requires = 2023042400;
$plugin->supported = [402, 402];
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = ['cachestore_redis' => 2022112800];
$plugin->dependencies = ['cachestore_redis' => 2023042400];

0 comments on commit 3d422c7

Please sign in to comment.