From e2db7f317873aef67c74382b9b119ba3e894f5cc Mon Sep 17 00:00:00 2001 From: Irina Hoppe Date: Fri, 9 Aug 2024 14:39:24 +0200 Subject: [PATCH] change required moodle version --- db/upgrade.php | 4 ++-- version.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/db/upgrade.php b/db/upgrade.php index e70e240e..777594ca 100644 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -218,7 +218,7 @@ function xmldb_ratingallocate_upgrade($oldversion) { upgrade_mod_savepoint(true, 2023050900, 'ratingallocate'); } - if ($oldversion < 2024011700) { + if ($oldversion < 2024080900) { // Define completionrules fields to be added to ratingallocate. $table = new xmldb_table('ratingallocate'); @@ -234,7 +234,7 @@ function xmldb_ratingallocate_upgrade($oldversion) { } // Ratingallocate savepoint reached. - upgrade_mod_savepoint(true, 2024011700, 'ratingallocate'); + upgrade_mod_savepoint(true, 2024080900, 'ratingallocate'); } return true; diff --git a/version.php b/version.php index 80b1be9d..bf60a6cc 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2024011700; // The current module version (Date: YYYYMMDDXX). -$plugin->requires = 2020061500; // Requires Moodle 3.9+. +$plugin->version = 2024080900; // The current module version (Date: YYYYMMDDXX). +$plugin->requires = 2022112800; // Requires Moodle 4.1 and higher. $plugin->maturity = MATURITY_STABLE; $plugin->release = 'v4.4-r1'; $plugin->component = 'mod_ratingallocate'; // To check on upgrade, that module sits in correct place.