From fd0027e4b3ca99abb43bf68ffbefe6faddacea25 Mon Sep 17 00:00:00 2001 From: Lehan Coetzee Date: Thu, 10 Oct 2024 12:13:47 +0200 Subject: [PATCH 1/3] Add supported versions, add release --- version.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/version.php b/version.php index 5486339..253c919 100644 --- a/version.php +++ b/version.php @@ -5,3 +5,12 @@ $plugin->requires = 2019111809; // Requires this Moodle version $plugin->component = 'filter_siyavula'; // Full name of the plugin (used for diagnostics) $plugin->maturity = MATURITY_STABLE; +$plugin->supported = [ + 383, + 400, + 410, + 420, + 430, + 440 +]; +$plugin->release = '1.3.0'; From 5128c48ebd6eb255f8ccef5abd3e2cfc3ba41461 Mon Sep 17 00:00:00 2001 From: Lehan Coetzee Date: Thu, 10 Oct 2024 12:34:07 +0200 Subject: [PATCH 2/3] Fix supported declaration --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 253c919..a74606f 100644 --- a/version.php +++ b/version.php @@ -11,6 +11,6 @@ 410, 420, 430, - 440 + 440, ]; $plugin->release = '1.3.0'; From 653f6da06911439d6a0f95973f07cfd0490c3e73 Mon Sep 17 00:00:00 2001 From: Lehan Coetzee Date: Thu, 10 Oct 2024 12:50:32 +0200 Subject: [PATCH 3/3] Fix supported versions --- version.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/version.php b/version.php index a74606f..cd6ca9a 100644 --- a/version.php +++ b/version.php @@ -5,12 +5,5 @@ $plugin->requires = 2019111809; // Requires this Moodle version $plugin->component = 'filter_siyavula'; // Full name of the plugin (used for diagnostics) $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [ - 383, - 400, - 410, - 420, - 430, - 440, -]; +$plugin->supported = [38, 444]; $plugin->release = '1.3.0';