From 36d09dad841b94e37ecbaf99307c0b0103fbd735 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Sun, 13 Oct 2024 11:43:38 +0200 Subject: [PATCH] Support Moodle 4.5.0 (#142) - See #141. --- .github/workflows/ci.yml | 2 +- version.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0b18dd..eab45de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: php: ['8.1', '8.2'] - moodle-branch: ['MOODLE_404_STABLE'] + moodle-branch: ['MOODLE_404_STABLE', 'MOODLE_405_STABLE'] database: [pgsql, mariadb] steps: diff --git a/version.php b/version.php index 66baf1e..997efed 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2024080700; -$plugin->release = '2.18.0'; +$plugin->version = 2024101300; +$plugin->release = '2.18.1'; $plugin->requires = 2018120300; -$plugin->supported = [404, 404]; +$plugin->supported = [404, 405]; $plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';