Skip to content

Commit

Permalink
Prepare compatibility for Moodle 4.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Aug 21, 2024
1 parent 131a312 commit 7c305db
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: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_403_STABLE']
php: ['8.1', '8.2', '8.3']
moodle-branch: ['MOODLE_404_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

* 2024-08-20 - Prepare compatibility for Moodle 4.4.

### v4.3-r3

* 2024-08-21 - Replace deprecated print_error() with moodle_exception.
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.3+
This plugin requires Moodle 4.4+


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 = 2023102002;
$plugin->release = 'v4.3-r3';
$plugin->requires = 2023100900;
$plugin->supported = [403, 403];
$plugin->requires = 2024042200;
$plugin->supported = [404, 404];
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = ['cachestore_redis' => 2023100900];
$plugin->dependencies = ['cachestore_redis' => 2024042200];

0 comments on commit 7c305db

Please sign in to comment.