From 1f05ce32185dd088bd87aa934a8de7512932f41b Mon Sep 17 00:00:00 2001 From: Alexander Bias <alexander.bias@uni-ulm.de> Date: Fri, 11 Dec 2020 08:17:38 +0100 Subject: [PATCH] Improvement: Declare which major stable version of Moodle this plugin supports --- CHANGES.md | 4 ++++ version.php | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index a4d8010..b2bf4ee 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus Changes ------- +### Unreleased + +* 2020-12-10 - Improvement: Declare which major stable version of Moodle this plugin supports (see MDL-59562 for details). + ### v3.9-r1 * 2020-09-18 - Prepare compatibility for Moodle 3.9. diff --git a/version.php b/version.php index a96d515..64a922c 100644 --- a/version.php +++ b/version.php @@ -28,5 +28,6 @@ $plugin->component = 'auth_ldap_syncplus'; $plugin->version = 2020091800; $plugin->release = 'v3.9-r1'; $plugin->requires = 2020061500; +$plugin->supported = [39, 39]; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = array('auth_ldap' => 2020061500); -- GitLab