Skip to content

Commit

Permalink
Moodle 4.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulholden committed Oct 8, 2024
1 parent f62fef5 commit e1ce238
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
include:
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
- php: '8.0'
moodle-branch: 'MOODLE_402_STABLE'
- php: '8.1'
moodle-branch: 'MOODLE_403_STABLE'
- php: '8.2'
moodle-branch: 'MOODLE_404_STABLE'
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'

steps:
- name: Check out repository code
Expand Down Expand Up @@ -61,6 +61,10 @@ jobs:
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpcs --max-warnings 0

- name: PHPDoc checker
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpdoc --max-warnings 0

- name: Grunt
if: ${{ !cancelled() }}
run: moodle-plugin-ci grunt --max-lint-warnings 0
Expand Down
2 changes: 2 additions & 0 deletions tests/observers_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ final class observers_test extends advanced_testcase {
* @return void
*/
protected function setUp(): void {
parent::setUp();

$this->resetAfterTest(true);

// Create test courses.
Expand Down
2 changes: 2 additions & 0 deletions tests/privacy/provider_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ final class provider_test extends provider_testcase {
* @return void
*/
protected function setUp(): void {
parent::setUp();

$this->resetAfterTest(true);

// Create test courses.
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'local_metagroups';
$plugin->release = '4.4';
$plugin->version = 2024042200;
$plugin->release = '4.5';
$plugin->version = 2024100800;
$plugin->requires = 2022112800; // Moodle 4.1 onwards.
$plugin->maturity = MATURITY_STABLE;

Expand Down

0 comments on commit e1ce238

Please sign in to comment.