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 22, 2023
1 parent 3cd2f09 commit fee3d09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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-block_cohortspecifichtml
Changes
-------

### Unreleased

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

### v4.2-r2

* 2023-10-23 - Adopt Moodle core change in block_html from MDL-77164
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 @@ This Text block provides the possibility to selectively display the block to mem
Requirements
------------

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


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 = 'block_cohortspecifichtml';
$plugin->version = 2023090101;
$plugin->release = 'v4.2-r2';
$plugin->requires = 2023042400;
$plugin->supported = [402, 402];
$plugin->requires = 2023100900;
$plugin->supported = [403, 403];
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = ['block_html' => 2023042400];
$plugin->dependencies = ['block_html' => 2023100900];

0 comments on commit fee3d09

Please sign in to comment.