2005-02-16 10:40:48 +00:00
|
|
|
<?php
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2010-09-06 12:01:57 +00:00
|
|
|
// 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/>.
|
2002-09-06 14:06:48 +00:00
|
|
|
|
2010-09-06 12:01:57 +00:00
|
|
|
/**
|
|
|
|
* MOODLE VERSION INFORMATION
|
|
|
|
*
|
|
|
|
* This file defines the current version of the core Moodle code being used.
|
|
|
|
* This is compared against the values stored in the database to determine
|
|
|
|
* whether upgrades should be performed (see lib/db/*.php)
|
|
|
|
*
|
|
|
|
* @package core
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2004-09-27 13:50:55 +00:00
|
|
|
|
2010-09-06 12:01:57 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
2004-09-27 13:50:55 +00:00
|
|
|
|
2010-09-06 12:01:57 +00:00
|
|
|
|
2012-05-17 22:35:57 +02:00
|
|
|
$version = 2012051700.01; // YYYYMMDD = weekly release date of this DEV branch
|
2011-03-30 14:32:49 +02:00
|
|
|
// RR = release increments - 00 in DEV branches
|
|
|
|
// .XX = incremental changes
|
2011-02-25 23:39:42 +01:00
|
|
|
|
2012-05-11 12:18:06 +02:00
|
|
|
$release = '2.3dev (Build: 20120511)'; // Human-friendly version name
|
2011-02-25 23:39:42 +01:00
|
|
|
|
2012-05-03 14:05:40 +08:00
|
|
|
$branch = '23'; // this version's branch
|
2011-12-05 12:16:32 +01:00
|
|
|
$maturity = MATURITY_ALPHA; // this version's maturity level
|