Skip to content

Commit

Permalink
V4.0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Apr 17, 2022
1 parent c33985b commit 28da380
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,28 @@ jobs:
matrix:
include:
- php: 7.3
moodle-branch: 'master'
moodle-branch: 'MOODLE_400_STABLE'
database: pgsql
- php: 7.3
moodle-branch: 'master'
moodle-branch: 'MOODLE_400_STABLE'
database: mariadb
- php: 7.4
moodle-branch: 'master'
moodle-branch: 'MOODLE_400_STABLE'
database: pgsql
- php: 7.4
moodle-branch: 'master'
moodle-branch: 'MOODLE_400_STABLE'
database: mariadb
- php: 8.0
# The following line is only needed if you're going to run php8 jobs and your
# plugin needs xmlrpc services.
extensions: xmlrpc-beta
moodle-branch: master
moodle-branch: MOODLE_400_STABLE
database: pgsql
- php: 8.0
# The following line is only needed if you're going to run php8 jobs and your
# plugin needs xmlrpc services.
extensions: xmlrpc-beta
moodle-branch: master
moodle-branch: MOODLE_400_STABLE
database: mariadb

steps:
Expand Down
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version Information
===================

Version 4.0.0.2 - TBR
Version 4.0.1.0 - 17/04/22
-----------------------------
1. Fix 'Indentation not working in moodle 4.0' - #120.

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 @@ then please do spread the word to other educators. The main page for the format

Required version of Moodle
==========================
This version works with Moodle 4.0rc1 version 2022040800.00 (Build: 20220408) and above within the master branch until the
This version works with Moodle 4.0 version 2022041900.00 (Build: 20220419) and above within the MOODLE_400_STABLE branch until the
next release.

Please ensure that your hardware and software complies with 'Requirements' in 'Installing Moodle' on
Expand Down
2 changes: 1 addition & 1 deletion Support.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ benefits.

Required version of Moodle
==========================
This version works with Moodle 4.0rc1 version 2022040800.00 (Build: 20220408) and above within the master branch until the
This version works with Moodle 4.0 version 2022041900.00 (Build: 20220419) and above within the MOODLE_400_STABLE branch until the
next release.

Please ensure that your hardware and software complies with 'Requirements' in '[Installing Moodle](https://docs.moodle.org/400/en/Installing_Moodle)'.
Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
*/
defined('MOODLE_INTERNAL') || die();

$plugin->version = 2021102201;
$plugin->maturity = MATURITY_RC;
$plugin->requires = 2022040800.00; // 4.0rc1 (Build: 20220408).
$plugin->version = 2022041700;
$plugin->maturity = MATURITY_STABLE;
$plugin->requires = 2022041900.00; // 4.0 (Build: 20220419).
$plugin->supported = array(400, 400);
$plugin->component = 'format_topcoll';
$plugin->release = '4.0.0.2';
$plugin->release = '4.0.1.0';

0 comments on commit 28da380

Please sign in to comment.