Skip to content

Commit 3092342

Browse files
committed
Prepare compatibility for Moodle 4.5.
1 parent 915bede commit 3092342

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/moodle-plugin-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
php: ['8.1', '8.2', '8.3']
28-
moodle-branch: ['MOODLE_404_STABLE']
28+
moodle-branch: ['MOODLE_405_STABLE']
2929
database: [pgsql]
3030
extensions: [redis]
3131

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ moodle-tool_redis
44
Changes
55
-------
66

7+
### Unreleased
8+
9+
* 2024-10-07 - Prepare compatibility for Moodle 4.5.
10+
711
### v4.4-r1
812

913
* 2024-08-24 - Development: Rename master branch to main, please update your clones.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Moodle plugin which adds a Redis management GUI to Moodle site administration.
99
Requirements
1010
------------
1111

12-
This plugin requires Moodle 4.4+
12+
This plugin requires Moodle 4.5+
1313

1414

1515
Motivation for this plugin

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
$plugin->component = 'tool_redis';
2828
$plugin->version = 2024060100;
2929
$plugin->release = 'v4.4-r1';
30-
$plugin->requires = 2024042200;
31-
$plugin->supported = [404, 404];
30+
$plugin->requires = 2024100700;
31+
$plugin->supported = [405, 405];
3232
$plugin->maturity = MATURITY_STABLE;
33-
$plugin->dependencies = ['cachestore_redis' => 2024042200];
33+
$plugin->dependencies = ['cachestore_redis' => 2024060100;];

0 commit comments

Comments
 (0)