Skip to content

Commit f7cb951

Browse files
committed
Prepare compatibility for Moodle 4.4.
1 parent a46f229 commit f7cb951

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
php: ['8.0', '8.1', '8.2']
34-
moodle-branch: ['MOODLE_403_STABLE']
33+
php: ['8.1', '8.2', '8.3']
34+
moodle-branch: ['MOODLE_404_STABLE']
3535
database: [pgsql, mariadb]
3636

3737
steps:

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ moodle-atto_styles
44
Changes
55
-------
66

7+
### Unreleased
8+
9+
* 2024-08-20 - Prepare compatibility for Moodle 4.4.
10+
711
### v4.3-r2
812

913
* 2024-08-11 - Add section for scheduled tasks to README

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Moodle Atto plugin which lets the administrator provide custom CSS classes which
99
Requirements
1010
------------
1111

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

1414

1515
Motivation for this plugin

version.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
$plugin->component = 'atto_styles';
2929
$plugin->version = 2023102001;
3030
$plugin->release = 'v4.3-r2';
31-
$plugin->requires = 2023100900;
32-
$plugin->supported = [403, 403];
31+
$plugin->requires = 2024042200;
32+
$plugin->supported = [404, 404];
3333
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)