diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dcbc6c..2e8ef50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: php: ['7.3', '7.4', '8.0', '8.1', '8.2'] - moodle-branch: ['MOODLE_39_STABLE', 'MOODLE_310_STABLE', 'MOODLE_311_STABLE', 'MOODLE_400_STABLE', 'MOODLE_401_STABLE', 'MOODLE_402_STABLE, 'MOODLE_403_STABLE'] + moodle-branch: ['MOODLE_39_STABLE', 'MOODLE_310_STABLE', 'MOODLE_311_STABLE', 'MOODLE_400_STABLE', 'MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE'] database: [pgsql, mariadb] steps: diff --git a/CHANGES.md b/CHANGES.md index fcbb766..a1ccd71 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog ## +- [2.0.5]: + - Fixed typo in github workflow. + - [2.0.4]: - Shortened long course names in exported documents. diff --git a/version.php b/version.php index a268cb1..112ac7d 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_exammanagement'; // Full name of the plugin (used for diagnostics). -$plugin->release = '2.0.4'; // User-friendly version number. -$plugin->version = 2024022601; // The current module version (Date: YYYYMMDDXX). +$plugin->release = '2.0.5'; // User-friendly version number. +$plugin->version = 2024022602; // The current module version (Date: YYYYMMDDXX). $plugin->requires = 2020061500; // Requires this Moodle version. $plugin->maturity = MATURITY_STABLE;