]> git.mjollnir.org Git - moodle.git/commitdiff
New version syntax.
authorstronk7 <stronk7>
Fri, 1 Oct 2004 08:38:53 +0000 (08:38 +0000)
committerstronk7 <stronk7>
Fri, 1 Oct 2004 08:38:53 +0000 (08:38 +0000)
mod/glossary/version.php

index ae4ff02d6b4769abf8218705c3e8b0edd66179f7..5d33a99235fc3acf7be978eb47e798c8e262be40 100644 (file)
@@ -5,10 +5,12 @@
 ///  This fragment is called by moodle_needs_upgrading() and /admin/index.php
 /////////////////////////////////////////////////////////////////////////////////
 
-$module->version  = 2004091700;  // The current module version (Date: YYYYMMDDXX)
+$module->version  = 2004091700;  // YYYYMMDD   = current module version
+                                 //         X  = point release version 1,2,3 etc
+                                 //          Y = increments between point releases
 $module->requires = 2004091700;  // Requires this Moodle version
 $module->cron     = 0;           // Period for cron to check this module (secs)
 
-$release = "1.4 development";   // User-friendly version number
+$release = "1.5 development";   // User-friendly version number
 
 ?>