mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
fbb0767536
version = 2021052500 release version requires= 2021052500 same than version Why 20210525? (25th May 2021) ? Because master is going to be Moodle 4.0, to be released on November 2021. And, until then, we are going to have a couple of "intermediate" releases: - Moodle 3.10 to be released 9th November 2020. (2020110900) This version will be using versions from today to 2020110900 (once it's released the YYYYMMDD part stops advancing). - Moodle 3.11 to be released 10th May 2021. (2021051000) This version will be using versions from 3.10 release to 2021051000 (once it's released the YYYYMMDD part stops advancing). That means that all versions from today to 2021051000 are going to be used by those 2 "intermediate" releases (3.10 and 3.11). And we cannot use them in master, because it's forbidden to have any overlapping of versions between branches (or different upgrade paths will fail). So, get that 2021051000, let's add it a couple of weeks to cover the on-sync period (or a 2 weeks delay max!) and, the first version that master can "own" in exclusive (without any overlap) is, exactly, 25th May 2021, hence our 20210525.
31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Version info
|
|
*
|
|
* @package report
|
|
* @subpackage participation
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
$plugin->version = 2021052500; // The current plugin version (Date: YYYYMMDDXX)
|
|
$plugin->requires = 2021052500; // Requires this Moodle version
|
|
$plugin->component = 'report_participation'; // Full name of the plugin (used for diagnostics)
|