Looking at releasing a 1.4.2 within days to include all the recent fixes.

Also, I'm going to change the numbering convention slightly for stable
releases and start using both characters after the date
This commit is contained in:
moodler
2004-09-27 13:47:25 +00:00
parent db5bf3f55a
commit 802766d303
+11 -8
View File
@@ -1,12 +1,15 @@
<?PHP //$Id$
// This file defines the current version of the
// Moodle code that is being used. This can be
// compared against the values stored in the
// database to determine whether upgrades should
// be performed (see lib/db/*.php)
<?php
$version = 2004083101; // MUST NOT BE CHANGED! (except by Martin)
// MOODLE VERSION INFORMATION
$release = "1.4.1+"; // User-friendly version number
// 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)
$version = 2004083110; // YYYMMDD = date of first major branch release 1.4
// X = point release version 1,2,3 etc
// Y = increments between point releases
$release = '1.4.1+'; // Human-friendly version name
?>